gpt4 book ai didi

html - 使内联 block 水平拉伸(stretch)容器

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

我想这样做,如果容器内的行内 block 超过容器的宽度,它们会拉伸(stretch)而不是下降到下方。

我写了一个代码笔来表达我的意思:http://codepen.io/anon/pen/pJQWbR

<div class="container">
<div class="content"></div>
<div class="content"></div>
<div class="content"></div>
<div class="content"></div>
<div class="content"></div>
</div>

CSS

.container{
overflow: scroll;
}

.content{
height: 100px;
margin: 5px;
background: blue;
display: inline-block;
width: 25%;
}

试图让蓝色框都在一条线上。

最佳答案

添加

white-space: nowrap

容器

所以容器样式变成:

.container{
overflow-x: scroll;
white-space: nowrap;
}

white-space: nowrap means Sequences of whitespace will collapse into a single whitespace. Text will never wrap to the next line. The text continues on the same line until a < br > tag is encountered

查看链接:“http://codepen.io/anon/pen/xGQXRz

关于html - 使内联 block 水平拉伸(stretch)容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31692914/

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