当前位置: 代码迷 >> Web前端 >> 火狐能正常显示,而IE显示靠左的解决办法
  详细解决方案

火狐能正常显示,而IE显示靠左的解决办法

热度:73   发布时间:2013-09-08 15:21:21.0
火狐能正常显示,而IE显示靠左的解决方法
在页面中加入下面代码就可以;
<style type="text/css">

body{text-align:center; width:100%;}
#container{
text-align:left;
width:1000px;
margin:0 auto;
border:1px solid #333;
background-color:#ccc;
}

</style>
  相关解决方案