1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
| ::-webkit-scrollbar {
| /*滚动条整体样式*/
| width: 5px;
| /*高宽分别对应横竖滚动条的尺寸*/
| height: 8px;
| scrollbar-arrow-color: red;
| }
|
| /* 滚动条 */
| ::-webkit-scrollbar-thumb {
| border-radius: 5px;
| -webkit-box-shadow: inset 0 0 5px rgba(218, 218, 218, 0.2);
| box-shadow: inset 0 0 5px rgba(218, 218, 218, 0.2);
| background: rgba(218, 218, 218, 0.5);
| cursor: pointer;
| scrollbar-arrow-color: red;
| }
|
| /* 滚动槽 */
| ::-webkit-scrollbar-track {
| -webkit-box-shadow: inset 0 0 5px rgba(218, 218, 218, 0.2);
| box-shadow: inset 0 0 5px rgba(218, 218, 218, 0.2);
| border-radius: 0;
| background: rgba(218, 218, 218, 0.1);
| }
|
|