当前位置 : 主页 > 网页制作 > css >

IE9下DIV本来应该居中的结果显示为居左

来源:互联网 收集:自由互联 发布时间:2022-04-20
复制代码 代码如下: 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 下面 本来应该居中的,结果显示为居左

复制代码代码如下:
<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方可实现居中。
上一篇:使用display:inline-block居中没有宽度的元素
下一篇:没有了
网友评论