我在 Firefox 中居中 div 时遇到问题,它似乎在所有 webkit 浏览器中都可以正常工作,所以我真的不知道我在做什么错:
我的 CSS:
html {
width: 100%;
height: 100%;
}
body {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
height: 100%;
width: 100%;
}
#Page {
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
}
#LoginBackground {
position: absolute;
margin-top: -45%;
margin-left: -35%;
left: 50%;
top: 50%;
width: 70%;
height: 90%;
}
我的 HTML:
<body>
<div id="Page">
<div id="LoginBackground">
</div>
</div>
</body>
这是 Gecko 引擎中的错误还是我做错了什么。