当前位置: 代码迷 >> Web前端 >> firefox,IE浏览器的正当中
  详细解决方案

firefox,IE浏览器的正当中

热度:142   发布时间:2012-11-23 22:54:33.0
firefox,IE浏览器的居中

firefox中的居中: margin:0 auto;
ie中的居中:text-align:center;
margin:0 auto;在firefox中能正常显示
margin:auto auto在firefox中不能正常显示

?

居中效果,两者结合起来,得到最大限度的跨浏览器支持

body{
	text-align:center;
}
#container{
	margin-left:auto;
	margin-right:auto;
	border:1px solid red;
	width:168px;
	text-align:left;
}
?

?