一條很窄的滾動條 ...
.scroll::-webkit-scrollbar { // 縱向滾動條和橫向滾動條寬度
width: 1px;
height: 1px;
}
.scroll::-webkit-scrollbar-thumb { // 滾動條背景條樣式
border-radius: 1px;
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: #5b5f63;
}
.scroll::-webkit-scrollbar-track { // 滾動條按鈕樣式
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
border-radius: 1px;
background: #00284d;
}
一條很窄的滾動條