jiangwei小站
21 字
1 分钟
自定义滚动条样式
2024-07-19

css

::-webkit-scrollbar {
  width: 8px;
  overflow-y: overlay;
}
::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(100, 100, 100);
}