diff --git a/snippets/scrollbars-styling.md b/snippets/custom-scrollbar.md similarity index 55% rename from snippets/scrollbars-styling.md rename to snippets/custom-scrollbar.md index f4da38705..a29116581 100644 --- a/snippets/scrollbars-styling.md +++ b/snippets/custom-scrollbar.md @@ -1,11 +1,11 @@ -### Scrollbars styling +### Custom scrollbar -Customise scrollbars style for the document and elements with overflow scrollable, on webkit platforms. +Customizes the scrollbar style for the document and elements with scrollable overflow, on WebKit platforms. #### HTML ```html -
+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure id exercitationem nulla qui repellat laborum vitae, molestias tempora velit natus. Quas, assumenda nisi. Quisquam enim qui iure, consequatur velit sit?

``` @@ -31,7 +31,7 @@ Customise scrollbars style for the document and elements with overflow scrollabl #### Demo
-
+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure id exercitationem nulla qui repellat laborum vitae, molestias tempora velit natus. Quas, assumenda nisi. Quisquam enim qui iure, consequatur velit sit?

@@ -42,37 +42,36 @@ Customise scrollbars style for the document and elements with overflow scrollabl
#### 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. +1. `::-webkit-scrollbar` targets the whole scrollbar element. +2. `::-webkit-scrollbar-track` targets only the scrollbar track. +3. `::-webkit-scrollbar-thumb` targets 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/) +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/) #### Browser support -⚠️ Currently scrollbar styling doesn't appear to be on any standards track. - +⚠️ Scrollbar styling doesn't appear to be on any standards track. * https://caniuse.com/#feat=css-scrollbar