在IE8下运行此段代码 没有居中 除了body设置text-align:center 还有其它解决方法吗?
<!doctype html>
<html>
<head>
<style>
.tcenter{
width:500px;
margin:0 auto;
}
</style>
</head>
<body>
<div class="tcenter">没有居中。。</div>
</body>
</html>
亲测IE8居中没问题
你要文字居中就设置.tcenter{text-align:center}
margin:0 auto; 是让div居中的,不是让文字居中的。