首页
归档
笔记
树洞
搜索
友言

文章详情

Interesting People Record Interesting.

/ CSS / 文章详情

CSS美化滚动条

Sonder
2021-06-21
316字
1分钟
浏览 (2.8k)

复制代码
.next::-webkit-scrollbar {
    width: 8px;
}

.next::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: hsla(0,0%,100%,0);
}

.next::-webkit-scrollbar-track {
    margin-top: 0;
    margin-bottom: 8px;
}

.next:hover::-webkit-scrollbar-thumb {
    background-color: #e1e1e1;
}
下一篇 / 各种CSS居中方案

🎯 相关文章

💡 推荐文章

🕵️‍♂️ 评论 (0)