美文网首页
无法设置webkit-scrollbar-thumb的宽度

无法设置webkit-scrollbar-thumb的宽度

作者: 胡杨林_3b8d | 来源:发表于2020-12-01 11:51 被阅读0次

本想用width改变滚动条内部块的宽度,没有效果

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: rgba(100, 100, 100, .5);
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: #818B99;
    border-radius: 9px;
    width: 9px;  //木有效果 FIVE
}

解决办法

::-webkit-scrollbar-thumb {
    background-color: #818B99;
    border: 3px solid transparent;
    border-radius: 9px;
    background-clip: content-box;
}

相关文章

网友评论

      本文标题:无法设置webkit-scrollbar-thumb的宽度

      本文链接:https://www.haomeiwen.com/subject/nexswktx.html