img

CSS美化滚动条

2021-06-21 0条评论 2.7k次阅读 CSS


.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;
}

💬 COMMENT


🦄 支持markdown语法

👋友