webkit
::-webkit-scrollbar {
background-color: lightgray;
border-radius: 5px;
width: 5px;
height: 10px;
background-clip: padding-box;
}
// /*滚动条两端方向按钮*/
// ::-webkit-scrollbar-button {
// background-color: pink;
// }
/*滚动条中间滑动部分*/
::-webkit-scrollbar-thumb {
background-color: #A8A8A8;
border-radius: 5px;
}
/*滚动条右下角区域*/
::-webkit-scrollbar-corner {
background-color: red;
}
webkit