我想将图像放置在另一个背景图像上,但是当我更改屏幕分辨率时,我想放置在背景图像顶部的图像会改变其位置。我使用下面的代码
<div id="identification ">
<div class="identification-image-1">
<a href="form.html">
<img id="image-1" src="images/identification-1.png" alt="" />
</a>
</div>
<div>
<a href="form.html">
<img src="images/identification-new.png" alt="" width="100%" />
</a>
</div>
</div>
CSS 代码:
#identification {
margin-top: 20px;
position: relative;
}
.identification-image-1 {
position: absolute;
margin-top: 200px;
margin-left: 350px;
}
注意“images/identification-new.png”是宽度为 100% 的背景图片。上面的代码解决了我的问题,但是当我更改屏幕分辨率时,绝对位置不起作用。