::-webkit-scrollbar定位整个滚动条元素。::-webkit-scrollbar-track仅针对滚动条轨道。::-webkit-scrollbar-thumb瞄准滚动条拇指。 ```html
/ Document scrollbar / ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); } / Scrollable element / .some-element::webkit-scrollbar { }
```less.global-scrollbar-style() {&::-webkit-scrollbar {height: 7.25px;width: 7.25px;}&::-webkit-scrollbar-thumb {border-radius: 15px;background-color: rgba(144, 147, 153, 0.3);}&::-webkit-scrollbar-thumb:hover {background-color: rgba(144, 147, 153, 0.5);}&::-webkit-scrollbar-track {opacity: 0;}//火狐scrollbar-width: thin;scrollbar-color: rgba(144, 147, 153);}
