0
我想簡單地將div居中置於窗口中間。目前使用的在ie7和ie8中居中一個div
.notSupported {
display: block;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
max-width: 500px;
max-height: 200px;
margin: auto;
background-color: #f3f3f3;
z-index: 1000;
text-align: center;
}
<div class="notSupported">Your browser is not supported</div>
在ie7
它會導致出現左上角div和在ie8
頂部中央。
你的寬度和高度設置爲div來放置 –