0%

使用 css 设置 placeholder 占位符样式

1
2
3
4
5
6
7
8
9
input::-webkit-input-placeholder {
color: #ccc;
}
input::-moz-input-placeholder {
color: #ccc;
}
input::-ms-input-placeholder {
color: #ccc;
}

使用 css 设置滚动条样式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
::-webkit-scrollbar {
-webkit-appearance: none;
width: 10px;
height: 13px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
::-webkit-scrollbar:vertical {
width: 10px;
}
::-webkit-scrollbar:horizontal {
height: 10px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, .3);
border-radius: 10px;
border: 2px solid #ffffff;
}
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: #ffffff;
}