.tree-list是我的类名,代码和效果如下:
如果是要隐藏只需要把::-webkit-scrollbar的width改为display: none;即可
.tree-list {
height: 600px;
overflow: hidden;
overflow-y: auto;
}
.tree-list::-webkit-scrollbar {
width: 6px;
}
.tree-list::-webkit-scrollbar-thumb {
background-color: #0003;
border-radius: 10px;
}
.tree-list::-webkit-scrollbar-track {
background-color: #eee;
border-radius: 10px;
}
