/*整個滾動條*/
::-webkit-scrollbar {
width: 5px;
height: 8px;
background-color: #fff;
}
/*定義滾動條軌道*/
::-webkit-scrollbar-track {
background-color: #fff;
}
/*定義滑塊*/
::-webkit-scrollbar-thumb {
background-color: #ACB1BF;
border-radius: 4px;
}
把這些代碼放入全局樣式中即可生效
