gpt4 book ai didi

html - overflow-x 不工作的 css

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

我正在尝试创建一个简单的滚动父 div。哪个子 div 应该水平堆叠。

slackblitz

但它不起作用。子 div 在 div 宽度结束后被包裹。请帮忙。

#outerContainer {
width: 100%;
height: 150px;
background: red;
overflow: hidden;
overflow-x: scroll;
}

.card {
float: left;
display: inline-block;
width: 100px;
height: 150px;
margin-right: 10px;
background: #fff;
}

<div id="outerContainer">
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
</div>

最佳答案

#outerContainer {
width: 100%;
height: 150px;
background: red;
overflow: hidden;
overflow-x: scroll;
white-space:nowrap;
}

.card {
display: inline-block;
width: 100px;
height: 150px;
margin-right: 10px;
background: #fff;
}

关于html - overflow-x 不工作的 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51055590/

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