我正在尝试使用自动边距在窗口中心显示一个块。
我的代码是
<div class="centre-element"> This box is coming at the center of the window. </div>
CSS
.centre-element{
width: 200px;
height: 100px;
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
margin:auto;
}
这适用于我测试的所有浏览器,除了 IE7。有什么帮助吗?
感谢任何帮助。