控制滚动条得css 样式
::-webkit-scrollbar { /* 1 */ }
::-webkit-scrollbar-button { /* 2 */ }
::-webkit-scrollbar-track { /* 3 */ }
::-webkit-scrollbar-track-piece { /* 4 */ }
::-webkit-scrollbar-thumb { /* 5 */ }
::-webkit-scrollbar-corner { /* 6 */ }
::-webkit-resizer { /* 7 */ }
上面css控制对应得位置
使用css伪类控制具体的状态
:horizontal
:vertical
:decrement
:increment
:start
:end
:double-button
:single-button
:no-button
:corner-present
:window-inactive
比如:垂直方向滚动条滑块的最小高度为100px
.custom-scrollbar::-webkit-scrollbar-thumb:vertical {
min-height: 50px;
}