美文网首页
全局滚动条样式设置

全局滚动条样式设置

作者: 阿凯_8b27 | 来源:发表于2020-08-26 10:33 被阅读0次

在项目开发中,我经常会遇到全局需要设置滚动条样式,采用如下css

::-webkit-scrollbar {
    width: 8px;
    height: 12px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    display: block;
    min-height: 12px;
    min-width: 8px;
    border-radius: 6px;
    background-color: rgb(217, 217, 217);
}

::-webkit-scrollbar-thumb:hover {
    display: block;
    min-height: 12px;
    min-width: 8px;
    border-radius: 6px;
    background-color: rgb(159, 159, 159);
}

相关文章

网友评论

      本文标题:全局滚动条样式设置

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