滚动条样式css
/** 滚动条 **/
::-webkit-scrollbar {
width: 6px;
height: 8px;
}
::-webkit-scrollbar-button:vertical {
display: none;
}
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
background-color: #e2e2e2;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: rgba(0, 0, 0, .3);
}
::-webkit-scrollbar-thumb:vertical:hover {
background-color: rgba(0, 0, 0, .35);
}
::-webkit-scrollbar-thumb:vertical:active {
background-color: rgba(0, 0, 0, .38);
}
还没有评论,来说两句吧...