Skip to content

设定浏览器滚动条样式

css
// 设定滚轮
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  box-shadow: inset 0 0 5px #314659;
  background: rgb(120, 121, 123);
}
::-webkit-scrollbar-track {
  background: 0 0;
  border-radius: 1px;
}