具体代码
/*滚动条的宽度 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
/*定义滚动条轨道*/
::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
/* 滚动条的滑块 */
::-webkit-scrollbar-thumb {
background-color: #949b9c;
border-radius: 3px;
}