我习惯于像这样从中间定位 divs X px:
#theDiv
{
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -100px;
}
现在我想归档一些与我的身体背景相似的东西:
body
{
background-position: 50% 50%;
/*background-margin-top: -100px from the middle...*/
}
我知道如何通过额外的 div 和使用 z-indexes 来实现这一点,但真的没有更简单的方法吗?