自定义滚动条样式

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
::-webkit-scrollbar  
{  
     16px;  
    height: 16px;  
    background-color: #F5F5F5;  
}  
  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track  
{  
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);  
    border-radius: 10px;  
    background-color: #F5F5F5;  
}  
  
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb  
{  
    border-radius: 10px;  
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);  
    background-color: #555;  
} 
.register-select::-webkit-scrollbar {
     8px;
    position: absolute;
    z-index: 999;
}
.register-select::-webkit-scrollbar-thumb {
    background: #1A92ED;
    border-radius: 4px;
}
.register-select::-webkit-scrollbar-thumb:hover {background-color:#5CABEC}
.register-select::-webkit-scrollbar-thumb:active {background-color:royalblue}
原文地址:https://www.cnblogs.com/love9happy/p/7099430.html