色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

HTML CSS將圖像分成兩半(都有覆蓋文本)并放置在不同的位置[關閉]

錢斌斌2年前9瀏覽0評論

想改善這個問題?通過編輯這篇文章,更新問題,使其只關注一個問題。

希望這有所幫助!!

.slice{
    width:238px;
    height:544px;
    overflow:hidden;
    position: relative;
}

.slice img {
    position: absolute;
}

.right-half {
    position: absolute;
    right: 0;
}

.bottom {
  float:right;
  
}

<div class="box">
<div class="slice">
    <img src="https://i.stack.imgur.com/UHwtV.png" /> 
</div>

<div class="slice bottom">
    <img class="right-half" src="https://i.stack.imgur.com/UHwtV.png" /> 
</div>
</div>