滚动条兼容写法

2021-01-07  本文已影响0人  随风飞2019
.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);
}
上一篇 下一篇

猜你喜欢

热点阅读