div {
width: 400px;
height: 400px;
background: yellow;
z-index: 99;
margin: 0 auto;
}
我有一条 div 弹出消息,它将位于顶层并位于页面中间。
但是,如果我设置position:absolute; z-index:99;
它将在顶部但margin:0 auto;
不会工作。
我怎样才能将它保持在图层的顶部并显示在中间?
div {
width: 400px;
height: 400px;
background: yellow;
z-index: 99;
margin: 0 auto;
}
我有一条 div 弹出消息,它将位于顶层并位于页面中间。
但是,如果我设置position:absolute; z-index:99;
它将在顶部但margin:0 auto;
不会工作。
我怎样才能将它保持在图层的顶部并显示在中间?
position: absolute;
通过使用两个嵌套元素 ( demo )使具有应用的元素居中。
margin: 0 auto;
来居中。HTML:
<div class="outer-div">
<div class="inner-div">
<p>This is a modal window being centered.</p>
</div>
</div>
CSS:
.outer-div {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 13;
/*
* Setting all four values to 0 makes the element as big
* as its next relative parent. Usually this is the viewport.
*/
}
.inner-div {
margin: 0 auto;
width: 400px;
background-color: khaki;
}