マージンオートを使用してウィンドウの中央にブロックを表示しようとしています。
私のコードは
<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を除いて、テストしたすべてのブラウザーで機能します。これについて何か助けはありますか?
助けに感謝します。