CSS美化滚动条
Sonder
2021-06-21
316字
1分钟
浏览 (2.9k)
.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;
}