CSS新属性 - 更改滚动条样式
html::-webkit-scrollbar{
width:10px;
/* height:1px; 针对横向滚动条*/
}
/*定义滚动条的样式*/
html::-webkit-scrollbar-thumb{
background: #f90;
border-radius: 15px;
}
/*定义滚动条其它区域的样式*/
html::-webkit-scrollbar-track{
background:#dedede;
box-shadow: inset 0 0 5px gary;
}

浙公网安备 33010602011771号