.main {
xxx...
&::-webkit-scrollbar { // width是設(shè)置垂直方向上的滾動條的寬度面褐,height是設(shè)置水平方向上的滾動條的寬度
width: 10px;
}
&::-webkit-scrollbar-thumb { // 滑塊的樣式
border-radius: 5px;
background: #c2c2c2;
box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
border: 5px solid transparent;
}
&::-webkit-scrollbar-track { // 滑動的軌道
border-radius: 0;
background: rgba(0, 0, 0, 0.1);
border: 5px solid transparent;
}
}