此问题已在此处有答案:
Can't scroll to top of flex item that is overflowing container(12个回答)
Why is a flex item limited to parent size?(2个答案)
4天前关闭。
我想创建一个包含3个<div class="chapter">
的<div class="chapters">
,每个100 vw宽。
我不知道为什么,但我只能看到其中的2个(第一个是失踪),而网页督察显示他们所有。
下面是我的代码:
.container {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.chapters {
background-color: bisque;
flex-direction: row;
min-width: 100vw;
}
.chapters .chapter {
min-width: 100vw;
height: 100vh;
background-color: red;
border: 1px solid white;
}
<div class="container chapters">
<div class="chapter"></div>
<div class="chapter"></div>
<div class="chapter"></div>
</div>
一开始,我没有使用min-width
为.chapter
,所以我的所有3个div都是可见的,但它们是100/3大众宽。
我试着用width
而不是min-width
来代替.chapter**s**
,或者用**%代替vw**,但都不起作用。此外,我试图删除所有其他HTML元素,或删除所有我的脚本,但它并没有改变一件事。
2条答案
按热度按时间iqih9akk1#
s3fp2yjn2#
禁用Flex项目的收缩。最小示例: