欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-03-05 09:10:29
...
::-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);
}