我正在尝试使具有溢出x内容的Flexbox容器的子div具有100%的溢出宽度,但我无法弄清楚它,进行了多次搜索,但找不到解决方案;
有人能帮我吗?
小提琴: https: //codepen.io/joaovtrc/pen/MWaaxKr
HTML:
<div class="test-container">
<div class="test-item-overflow">
overflowing contenttttttt
</div>
<div class="test-item-2"></div>
</div>
CSS:
.test-container {
width: 1000px;
height: 500px;
margin: auto;
background: black;
display: flex;
flex-direction: column;
overflow-x: auto;
}
.test-item-overflow {
width: fit-content;
height: 55px;
background: red;
border: 1px solid yellow;
}
.test-item-2 {
width: 100%;
height: 55px;
background: blue;
border: 1px solid green;
}
我希望“test-item-2”(蓝色背景的那个)div 的宽度与红色那个 div 的宽度相匹配,但是请记住,红色框中的内容可能并不每次都完全相同,所以没有 calc( 100% + x) 具有固定参数...
翻阅古今
森栏
红颜莎娜
相关分类