# 滚动条规范
# 使用组件库提供的滚动条 - WScrollbar
# 在表格中
- 默认滚动条
 
::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
::-webkit-scrollbar-thumb {
  background-color: #d1d1d1;
  border-radius: 8px;
  background-clip: padding-box;
  border: 4px solid transparent;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #828282;
}
::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #fafafa;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20