別の背景画像に画像を配置したいのですが、画面の解像度を変更すると、背景画像の上に配置したい画像の位置が変わります。以下のコードを使用します
<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% の背景画像です。上記のコードは私の問題を解決しますが、画面解像度を変更すると絶対位置が機能しませんでした。