IE9下DIV本来应该居中的结果显示为居左
2014/9/30 11:24:59来源:三联
代码如下:
<div style="width:1000px;margin:0 auto;">
<div style="background-color:red; text-align:left;">
区块1
</div>
<div style="background-color:yellow;">
区块2
</div>
</div>
在IE9 下面 本来应该居中的,结果显示为居左.
解决:
1.
在IE9以上的版本中,只需要设置 margin:0px auto; 就可以使得DIV居中
2.
在IE9以下的版本中,需要如下设置
代码如下:
<div style="text-align:center">
<div style="margin-left:auto ; margin-right:auto"></div>
</div>
其中的子div方可实现居中。
免责声明:本站文章系图趣网整理发布,如需转载,请注明出处,素材资料仅供个人学习与参考,请勿用于商业用途!
本文地址:http://www.tuquu.com/tutorial/wd2213.html
本文地址:http://www.tuquu.com/tutorial/wd2213.html
这些是最新的
最热门的教程