gpt4 book ai didi

html - 如何在一个 DIV 中重叠两个图像?

转载 作者:行者123 更新时间:2023-11-28 02:18:02 24 4
gpt4 key购买 nike

如何在一个 DIV 中重叠两个图像?我有这两张图片,我想将一张叠放在另一张上面

    <div id="personImgDiv">
<img id="scaleImg" src="http://hddfhm.com/images/clipart-110-scale-2.gif" />
<img id="personImg" src="http://vignette4.wikia.nocookie.net/simpsons/images/6/69/The_simpsons_ralph_wiggum-1-.png/revision/latest?cb=20141124210636" />

</div>

我认为这个 CSS 可以做到......

#scaleImg {
position: relative;
top: 0px;
left: 0px;
}


#personImg {
position: relative;
top: 0px;

但事实并非如此。这是演示我的问题的 fiddle -- https://jsfiddle.net/vksLv6ew/

最佳答案

对于此行为,容器 元素应该是相对 并且子元素必须是绝对

即 children 将拥有相对于容器的绝对定位。这是相应的样式:

#container {
position: relative;
}

#container img {
position: absolute;
top: 0;
left: 0;
}
<div id="container">
<img src="http://hddfhm.com/images/clipart-110-scale-2.gif" />
<img src="http://vignette4.wikia.nocookie.net/simpsons/images/6/69/The_simpsons_ralph_wiggum-1-.png/revision/latest?cb=20141124210636" />
</div>

可以玩的 fiddle :https://jsfiddle.net/npsquc6g/

关于html - 如何在一个 DIV 中重叠两个图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48361900/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com