gpt4 book ai didi

css - Bootstrap 网格 div 内的水平滚动条

转载 作者:行者123 更新时间:2023-11-28 16:08:28 26 4
gpt4 key购买 nike

我有一个 ul 列表,它位于 Bootstrap 网格元素内:

<div class="row">
<div class="col-sm-8">
<div id="playlist-wrapper">
<ul id="playlist">
<li>
...
</li>
<li>
...
</li>
<li>
...
</li>
</ul>
</div>
</div>
</div>

如果那一堆 li 元素大于 col-sm-8 的宽度,它们将跳到下一行。

我想添加一个水平滚动条,这样所有的 li 元素都在同一个 li 中,只在 col-sm-8 的宽度处可见,并且可以水平滚动它们。

我尝试为包装器设置固定高度(因此只能看到一行)并添加 overflow-y hidden 和 white-space nowrap 但它不起作用:

#playlist-wrapper{
height: 150px;
overflow-y: hidden;
overflow: auto;
Tried also with overflow-x: scroll;
white-space: nowrap;
}

还试过:

#playlist-wrapper ul {
white-space: nowrap;
}

其余的 css 不影响溢出只是为了使它成为一个水平列表和一些文本/颜色属性。

ul#playlist {
list-style-type: none;
margin: 0;
padding: 0;
background-color: black;
}

ul#playlist li {
float: left;
margin-left: 10px;
margin-top: 20px;
}

ul#playlist li p {
text-align: center;
color: white;
font-weight: bold;
text-decoration: none;
}

有了那个 css,我就有了一个垂直滚动条。是否有可能以某种方式设置水平滚动条?

最佳答案

我认为你需要这样的东西

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
#playlist-wrapper ul li{
height: 50px;
overflow-y: hidden;
overflow: auto;
white-space: nowrap;
}

#playlist-wrapper{
height: 150px;
width:150px;
overflow-y: hidden;
overflow: auto;
white-space: nowrap;
}


</style>
</head>
<body>
<div class="row">
<div class="col-sm-2">
<div id="playlist-wrapper">
<ul id="playlist">
<li>Fabian Eduardo Sierra Pineda</li>
<li>Fabian Eduardo Sierra Pineda</li>
<li>Fabian Eduardo Sierra Pineda</li>
</ul>
</div>
</div>
</div>
</body>
</html>

关于css - Bootstrap 网格 div 内的水平滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38725925/

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