gpt4 book ai didi

html - 在相关容器内保持 100% 宽度?

转载 作者:太空宇宙 更新时间:2023-11-04 06:59:08 26 4
gpt4 key购买 nike

我有这样的东西

<div class="container">
<div class="img-container">
<img class="thumbnail" src="https://via.placeholder.com/250x250" />
<div classe="img-icon-container">
<i class="photo-icon fas fa-camera-retro" />
<span>10</span>
</div>
</div>
</div>


.container{
height: 200px;
display: flex;
margin-bottom: 20px;
.img-container {
position: relative;
.thumbnail {
height: 100%;
}
.img-icon-container {
position: absolute;
bottom: 0;
width: 100%;
left: 0;
background-color: rgba(110, 110, 110, 0.8);
i {
margin-left: 5px;
margin-right: 5px;
font-size: 20px;
color: white;
}
&:hover {
background-color: blue;
}
}
}
}

在 chrome 中它看起来像我想要的。

enter image description here

但在 IE 11 和 FF 中

enter image description here

我需要添加什么才能使灰色条包含在 div 中?

最佳答案

只需添加 right:0; 而不是 width:100%;。这将始终保持内盒的边缘紧贴左右两侧。

关于html - 在相关容器内保持 100% 宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52192534/

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