CSS 滚动条设置

竖向滚动条:

.scrolBox{max-height: 100px;overflow-y: auto;overflow-x: hidden;padding-right: 10px;}
/*滚动条样式*/
.scrolBox::-webkit-scrollbar {width: 5px;}
.scrolBox::-webkit-scrollbar-thumb {border-radius:20px;-webkit-box-shadow: inset 0 0 5px #fff;background: #D8D8D8;}
.scrolBox::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 5px #fff;border-radius: 0;background: #fff;}
原文地址:https://www.cnblogs.com/shababy/p/15494534.html