gpt4 book ai didi

html - CSS - 图像在另一个图像上,都居中

转载 作者:太空宇宙 更新时间:2023-11-03 21:22:04 24 4
gpt4 key购买 nike

我有两张图片,一张放在另一张上面。像这样:

enter image description here

但是,当屏幕调整大小时,“播放图像”不居中(像这样:enter image description here

这是我的 html:

<div class="flapImage" id="idHot">                        
<img src="images/hot.png" style="position:relative; top:0; left:0; max-width:390px;" width="100%" height="190px" />
<img src="images/watchVideoP.png" width="200px" style="position:absolute; top:120px; left:80px;" />
</div>

这是我的 CSS:

.flapImage{
margin:0 auto;
text-align:center;
top:0;
left:0;
background-color:black;
}

你知道另一种方法吗?

最佳答案

添加这个属性

<div class="flapImage" id="idHot">                        
<img src="images/hot.png" style="position:relative; top:0; left:0; max-width:390px;" width="100%" height="190px" />
<img src="images/watchVideoP.png" width="200px" style="position:absolute; top:50%; left: 50%; transform: translate(-50%, -50%);" />
</div>

关于html - CSS - 图像在另一个图像上,都居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36331468/

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