### Scrollbars styling
Customise scrollbars style for the document and elements with overflow scrollable, on webkit platforms.
#### HTML
```html
```
#### CSS
```css
::-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);
}
```
#### Demo
#### Explanation
1. `::-webkit-scrollbar` target the whole scrollbar element.
2. `::-webkit-scrollbar-track` target only the scrollbar track.
3. `::-webkit-scrollbar-thumb` Allow you to target and style the scrollbar thumb.
There are many other pseudo elements that you can use to style scrollbars. More info about this on the [WebKit Blog](https://webkit.org/blog/363/styling-scrollbars/)
#### Browser support
⚠️ Currently scrollbar styling doesn't appear to be on any standards track.
* https://caniuse.com/#feat=css-scrollbar