--- title: Custom scrollbar tags: visual cover: sea-view firstSeen: 2018-03-01T10:34:55+02:00 lastUpdated: 2021-05-16T13:09:15+03:00 --- Customizes the scrollbar style for elements with scrollable overflow. - Use `::-webkit-scrollbar` to style the scrollbar element. - Use `::-webkit-scrollbar-track` to style the scrollbar track (the background of the scrollbar). - Use `::-webkit-scrollbar-thumb` to style the scrollbar thumb (the draggable element). - **Note:** Scrollbar styling doesn't appear to be on any standards track. This technique only works on WebKit-based browsers. ```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?

``` ```css .custom-scrollbar { height: 70px; overflow-y: scroll; } .custom-scrollbar::-webkit-scrollbar { width: 8px; } .custom-scrollbar::-webkit-scrollbar-track { background: #1E3F20; border-radius: 12px; } .custom-scrollbar::-webkit-scrollbar-thumb { background: #4A7856; border-radius: 12px; } ```