IE中的横向居中的解决方法:是style中加上text-align;如
[code]
<body style="text-align:center;">
<div style="width:200px; height:50px; background-color:#999999;">
</div>
</body>
[/code]
但这个居中在火狐中没有效果,上面的黑色方块依旧在左右,因为火狐中的居中不是使用text-align,要使用magin:0 auto; 如:
[code]
<body style="text-align:center;">
<div style="width:200px; height:50px; background-color:#999999; margin:0 auto;">
</div>
</body>
[/code]