今天在做东西的时候又碰到了,新手常常遇到而且很头痛的问题:网页不居中。加了margin:0 auto;在IE7,火狐下居中了,IE8下还是不行。代码如下:
<!–
body{margin:0px;padding:0px;background:#faeddf;}
#head{margin:0px auto; padding:0px;width:918px;height:25px;}
.headLeft{width:5px;height:25px;background:url(images/top_02.gif) no-repeat;float:left;}
.headMiddle{width:908px;height:25px;background:#2f2e2e;float:left;}
.headRight{width:5px;height:25px;background:url(images/top_01.gif) no-repeat;float:left;}
–>
<div id=”head”>
</div>
给head加了margin:0 auto;以前没遇到过问题,突然就想到了是ie8的问题。不得已用了text-align:center;之所以说不得已是因为text-align会使大部分内联元素,都居中对齐了,包括页面中其它的一些文本,还需要进行相应的调整才能适应设计的需要。