<div class="container-box">
<div class="content">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>8</div>
<div>8</div>
<div>0</div>
<div>6</div>
<div>68</div>
</div>
</div>
.container-box{
overflow: scroll;
height: 200px;
}
.content {
height: 500px;
}
// 用于设置滚动条的整体样式,且必须要设置宽高,否则不生效
.container-box::-webkit-scrollbar{
width: 10px;
height: 10px;
}
// 滚动条滑块
.container-box::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: red;
}
// 滚动条轨道
.container-box::-webkit-scrollbar-track {
background-color: wheat;
}
滚动条 -webkit-scrollbar
最新推荐文章于 2025-02-23 13:45:10 发布