ie8水平居中问题

来源:百度知道 编辑:UC知道 时间:2024/06/06 19:36:09
我用css写了body 的属性为text-align:center。然后在body中定义了几个div但是都没有居中对齐。不知道是为什么。提示:我在maxthon中试验了,是居中对齐的。不知道是不是ie8的一个bug??高手请指教了!!!!

你可以测一下你的代码,在firefox下面和ie8的反应应该是一样的。

如果想要居中的话应该是

<body style="text-align:center">
<div style="width:100px;margin:auto;border:1px solid red; text-align:left">ww</div>
</body>

自己择一下css就行了
利用margin:auto来实现居中

测试ie6.7.8.firefox均正常

ie一向来对css得一些属性不是很感冒,你可以试试margin-left:auto;margin-right:auto;看看!text-align:center是不是指字体居中?而不是div块级元素? 我个人认为是这样得,不知道是不是,我没去深入过!