我需要在全屏div內垂直居中和垂直div(未定義寬度)。在全屏div內居中div
我有下面的代碼。
外格:
background: #000 url('header.jpg') no-repeat center center /* fixed */;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
height: 100%;
position: relative;
text-align: center;
width: 100%;
內的div:
left: 50%;
margin-top: -300px;
margin-left: -300px;
max-width: 600px;
position: absolute;
top: 50%;
z-index: 2;
但它不乾淨 - 尤其是當我調整窗口的大小。這在某種程度上不是垂直居中。
你能幫我解決嗎?
謝謝!