在IE与FF中如何居中的css写法
发布时间:2016-12-29 来源:查字典编辑
摘要:IE方法:标记内的内容居中。非IE方法:标记的左右边距自动适应,以达到居中效果。标准推荐的CSS使用方法是后者,IE的那套是非标准的。不过在...
IE方法:<bodystyle="text-align:center;">
<body>标记内的内容居中。
非IE方法:<divstyle="margin-left:auto;margin-right:auto;"></div>
<div>标记的左右边距自动适应,以达到居中效果。
标准推荐的CSS使用方法是后者,IE的那套是非标准的。
不过在IE6中使用标准的DTD声明(xhtml版本),也能使用margin:0auto;方法达到居中效果。
.ie { text-align:center; width:100%; } /* IE居中 */ .ie div { width:200px; border:solid 1px #999; } .pr { margin:0 auto; width:200px; border:solid 1px #f00; } /* 标准居中 */ 居中 IE居中 标准居中
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]