我試圖在使用margin auto的窗口中心顯示一個塊。使用邊距自動垂直和水平居中div一個div
我的代碼是
<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測試的瀏覽器。這有幫助嗎?
感謝任何幫助。
可能[CSS:當沒有固定大小的div已知時垂直對齊div]( http://stackoverflow.com/questions/7206640/css-vertically-align-div-when-no-fixed-size-of-the-div-is-known) – NGLN