我想要将图像水平放置在中央,而不管图像的尺寸或浏览器的分辨率如何。我怎么能用html和css做到这一点?
它是网站的标志,我希望它始终显示在标题的中心。
答案 0 :(得分:1)
您可以使用此代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
#apDiv1 {
margin:0px auto;
top:0px;
width:800px;
text-align: center;
}
</style>
</head>
<body>
<div id="apDiv1"><img src="http://upload.wikimedia.org/wikipedia/en/2/2b/Small-logo.jpg" alt=""/></div>
</body>
</html>
答案 1 :(得分:0)
img {
display: block;
margin: auto;
}
您还可以查看http://www.w3.org/Style/Examples/007/center了解更多定心技巧。