Update format
This commit is contained in:
@ -5,6 +5,12 @@ tags: visual,advanced
|
||||
|
||||
Customizes the scrollbar style for the document and elements with scrollable overflow, on WebKit platforms.
|
||||
|
||||
- `::-webkit-scrollbar` targets the whole scrollbar element.
|
||||
- `::-webkit-scrollbar-track` targets only the scrollbar track.
|
||||
- `::-webkit-scrollbar-thumb` targets the scrollbar thumb.
|
||||
- Apply the same selectors and styles without `.custom-scrollbar` to style the document scrollbar.
|
||||
- Scrollbar styling doesn't appear to be on any standards track. There are many other pseudo-elements that you can use to style scrollbars. For more info, visit the [WebKit Blog](https://webkit.org/blog/363/styling-scrollbars/).
|
||||
|
||||
```html
|
||||
<div class="custom-scrollbar">
|
||||
<p>
|
||||
@ -36,11 +42,3 @@ Customizes the scrollbar style for the document and elements with scrollable ove
|
||||
border-radius: 12px;
|
||||
}
|
||||
```
|
||||
|
||||
#### Explanation
|
||||
|
||||
- `::-webkit-scrollbar` targets the whole scrollbar element.
|
||||
- `::-webkit-scrollbar-track` targets only the scrollbar track.
|
||||
- `::-webkit-scrollbar-thumb` targets the scrollbar thumb.
|
||||
- Apply the same selectors and styles without `.custom-scrollbar` to style the document scrollbar.
|
||||
- Scrollbar styling doesn't appear to be on any standards track. There are many other pseudo-elements that you can use to style scrollbars. For more info, visit the [WebKit Blog](https://webkit.org/blog/363/styling-scrollbars/).
|
||||
|
||||
Reference in New Issue
Block a user