//最重要!!!没有设置width和height,咋弄都不生效
::-webkit-scrollbar {
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
border: 0px solid transparent;
}
//轨道
::-webkit-scrollbar-track {
//box-shadow: 1px 1px 1px #132465 inset;
background: #435FAC;
border-radius: 0;
}
//滑块
::-webkit-scrollbar-thumb {
min-height: 10px;
background-clip: content-box;
border-radius: 999px;
background: #22315C;
//box-shadow: 0 0 0 1px #132465 inset;
}
::-webkit-scrollbar-corner {
background: transparent;
}
根据需要修改