滚动条样式
2022-11-06 本文已影响0人
coderfl
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}
::-webkit-scrollbar-thumb {
background-color: hsla(220, 4%, 58%, 0.3);
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
border-radius: 2em;
}