滚动条自定义

.test-1::-webkit-scrollbar {/*滚动条整体样式*/
         10px;     /*高宽分别对应横竖滚动条的尺寸*/
        height: 1px;
    }
.test-1::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
        border-radius: 10px;
         -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        background: #535353;
    }
.test-1::-webkit-scrollbar-track {/*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        border-radius: 10px;
        background: #EDEDED;
    }
.test-1为   overflow-y: auto; 层

滚动条美化插件 mCustomScrollbar
原文地址:https://www.cnblogs.com/qing1304197382/p/11454445.html