Skip to content

滑动条

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

参考资料

基于 MIT 许可发布