我有一個div位於網頁的頂部,但div是爲了b居中水平。CSS中心我的div
但由於某種原因div總是坐在左邊?
你知道我怎麼能讓div坐在水平居中嗎?
如果我添加「ALIGN =」中心「」到div那麼它坐鎮中心,但我正在尋找一個純CSS方法,使中心:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> </title>
<style type="text/css">
<!--
body {
text-align: center;
margin: 0 auto;
background-color: RGB(197, 155, 109);
background-image: url("../images/bodyBk2Lite.png");
background-repeat: repeat;
font-family: "Arial", "Tahoma", Serif;
font-size: 17px;
}
p {
text-align: left;
}
#heading {
width: 100%;
height: 110px;
background-image: url("../images/headingBk2Lite.png");
background-repeat: repeat-y;
background-color: RGB(0, 0, 0);
}
#headingContainer {
width: 980px;
height: 110px;
text-align: right;
background-color: red;
}
#headingSpacer {
height: 15px;
}
-->
</style>
</head>
<body>
<div id="heading">
<div id="headingContainer">
<a href="index.html"><img src="images/headingImg.png" height="105px" alt="Select Recipes"/></a>
</div>
</div>
</body>
</html>
這是合理的。然而,純度是不需要的;你不覺得嗎? – mozillanerd