<div class="list"></div>
<style>
.list {
width: 100%;
height: 350px;
overflow-y: auto;/*竖向滚动条*/
overflow-x: hidden;/*横向滚动条*/
&::-webkit-scrollbar {
/*滚动条整体样式*/
width: 5px;
height: 1px;
}
&::-webkit-scrollbar-thumb {
/*滚动条里面的滑块*/
border-radius: 5px;
background: rgba(64, 158, 255, 0.5);
}
&::-webkit-scrollbar-track {
/*滚动条里面轨道背景*/
border-radius: 5px;
background: #fff;
}
}
</style>