scrollbar css

.section::-webkit-scrollbar {
    width: 16px;
}
 
.section::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}
 
.section::-webkit-scrollbar-thumb {
    background-color: #d4aa70;
    border-radius: 100px;
}

分别控制宽度,滚动条背景,滚动条本身
原文地址:https://www.cnblogs.com/xulei1992/p/15127469.html