我需要将图像放在 div 的背景中,位于它的中心位置,例如:
我试过的是:
<div id="container">
...
</div
<div id="background">
<img src="images/bg.png"/>
</div>
用这个CSS:
div#container {
margin: 0 auto;
width: 52em;
}
div#bg img {
z-index: -999;
width: 100%;
height: 100%;
position: absolute;
top: 22%;
}
在我的浏览器中,我的屏幕尺寸为 22%,一切正常,但如果我在另一个屏幕上尝试不同尺寸的背景 img 不在 div 的中心。我能做些什么?有人能帮我吗?