美文网首页
滚动条兼容写法

滚动条兼容写法

作者: 随风飞2019 | 来源:发表于2021-01-07 14:59 被阅读0次
.content{
    height: 500px;
    overflow-y: auto;
}
// 滚动条兼容处理
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 1em;
    background-color: rgba(50, 50, 50, .3);
}

::-webkit-scrollbar-track {
    border-radius: 1em;
    background-color: rgba(50, 50, 50, .1);
}

相关文章

网友评论

      本文标题:滚动条兼容写法

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