主题
滑动条
scrollbar
css
html {
scrollbar-color: red orange;
/* auto | thin | none */
scrollbar-width: thin;
}
::-webkit-scrollbar
css
html::-webkit-scrollbar {
width: 6px;
}
html::-webkit-scrollbar-thumb {
background-color: #bbb;
border-radius: 4px;
}
html::-webkit-scrollbar-track {
background-color: transparent;
}