我需要的是我在網站上插入圖像1。在我做了這些之後,我想要顯示圖像2的相對位置,頂部5等內部圖像1.因此,如果我移動圖像1,圖像2仍然會在圖像1上的相同位置。基於來自背景的像素顯示圖像
I嘗試將圖像2的相對位置放置在圖像1上。但是當我移動圖像1時,圖像2仍舊處於舊位置。
CSS
.image1 {
background-color:#F2630A;
margin:10px;
padding:10px;
height:250px;
width:250px;
}
.image2 img {
// Here I'm lost. Tried with position relative but it's not a good way.
}
HTML
<div class="image1">
<div class="image2">
<img src="items/test.gif">
</div>
</div>
你有沒有嘗試在'.image2'上設置'position:relative'而不是'.image2 img'? – anurupr
@anurupr,是的,我有。相同的輸出 – user3186716
'.image2' shuld被絕對定位到'.image1',它應該有'position:relative' –