Skip to content
 .father::-webkit-scrollbar{
     width:10px;
     height:10px;
 }
.father::-webkit-scrollbar-track-piece {
    background-color: #eee;
    /*滚动条的背景颜色*/
    -webkit-border-radius: 0;
    /*滚动条的圆角宽度*/
}
.father::-webkit-scrollbar-track{
    background: rgb(239, 239, 239);
    border-radius:2px;
}
.father::-webkit-scrollbar-thumb{
    background: #bfbfbf;
    border-radius:10px;
}
.father::-webkit-scrollbar-thumb:hover{
    background: #333;
}
.father::-webkit-scrollbar-corner{
    background: #179a16;
}