/*滚动条样式*/::-webkit-scrollbar { /*滚动条整体样式*/ width: 10px; /*高宽分别对应横竖滚动条的尺寸*/ height: 10px;}::-webkit-scrollbar-thumb { /*滚动条里面小方块*/ background: #e5e5e5; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;}::-webkit-scrollbar-thumb:hover { /*滚动条里面小方块*/ background: #cfcfcf; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;}::-webkit-scrollbar-track { /*滚动条里面轨道*/ background: #F4F4F4;}/*::-webkit-scrollbar-button { !* 滚动条两端的按钮 *! width: 10px; }*/
来源:https://www.cnblogs.com/maoyazhi/p/8760362.html