css伪类选择器可修改滚动条样式,仅限webkit内核浏览器。
点击查看代码
::-webkit-scrollbar {/*滚动条整体*/
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track{/*滑轨*/
background-color:#aaa;
border-radius: 30px;
}
::-webkit-scrollbar-thumb{
background-color: #555;/*滑块*/
::-webkit-scrollbar-button{/*两端的按钮*/
display:none;
}