gpt4 book ai didi

css - 如何使一组内联 block 元素在 div 内滚动

转载 作者:行者123 更新时间:2023-11-28 09:25:58 25 4
gpt4 key购买 nike

我有一堆 <label>我的元素 <footer> .现在,标签在超过 <footer> 的宽度时换行。 .

如何让标签在页脚内水平滚动?

这是一个 JSFiddle,其中标签被包装。 http://jsfiddle.net/DTcHh/5088/

最佳答案

很简单:

footer {
background: black;
padding: 10px;
overflow-x: auto; /* scrollbar only when needed */
}
footer .btn-group {
font-size: 0; /* eliminates the white space gap between non-floated .btn s */
white-space: nowrap; /* prevents child inline .btn s from wrapping to the next line */
}
footer .btn-group .btn {
float: none;
}

演示: http://jsfiddle.net/DTcHh/5091/

关于css - 如何使一组内联 block 元素在 div 内滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28865283/

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