修改浏览器滚动条样式的例子

::-webkit-scrollbar-track-piece {
    background-color: rgba(245, 245, 245, 0.51);
    border-left:1px solid rgba(210, 210, 210, 0.51);
}
::-webkit-scrollbar {
    width:10px;
    height:10px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(194, 194, 194, 0.61);
    background-clip:padding-box;
    border:1px solid rgba(151, 151, 151, 0.60);
    min-height:28px;

}
::-webkit-scrollbar-thumb:hover {
    border:1px solid rgba(99, 99, 99, 0.71);
    background-color: rgba(146, 146, 146, 0.71);
}

猜你喜欢

转载自blog.csdn.net/u012681635/article/details/79575578