我遇到了一个问题,一行文本被它的父元素隐藏。我希望它的宽度是动态的,但我的生活,我不能弄清楚。
.container {
border: 6px solid black;
display: flex;
width: 100%;
}
.die_results {
border: 2px solid green;
display: flex;
width: 100%;
}
.low_rolls_container {
border: 2px solid blue;
width: 100%;
overflow: auto;
}
.low_rolls {
border: 2px solid red;
font-size: 5rem;
padding: 2px 5px 0 0;
white-space: nowrap;
}
<div class="container">
<div class="die_results">
<div class="low_rolls_container">
<div class="low_rolls">1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13</div>
</div>
<div class="high_roll">23</div>
</div>
<div class="die_results">
<div class="low_rolls_container">
<div class="low_rolls">1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13</div>
</div>
<div class="high_roll">23</div>
</div>
</div>
我试图让红色边框在蓝色边框内滚动,同时让“container”和“die_results”的宽度是动态的。有没有可能不使用固定的宽度就可以做到这一点?
1条答案
按热度按时间unguejic1#
container
表示任何容器,100px
的固定宽度值实际上并不重要,因为容器的宽度可以是可变的,这个解决方案仍然有效。我认为你的问题有点过于复杂了,你使用了正确的属性,但是你应用的其他属性可能会有一些复杂性。
在包含将要溢出的内容的容器上使用
overflow: auto
将只在内容实际溢出时显示滚动条,而不是像使用overflow: scroll
那样显示静态滚动条。您看到的
border
位于low_rolls
-元素周围,因此您可以看到它何时溢出。