💭 How To Create a Custom Scrollbar ================================== !https://www.w3schools.com/howto/howto_custom_scrollbar.asp Date: October 11, 2023 ![https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp](/static/https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp) Default scrollbars on a dark theme website are just the ugliest thing. This page covers all the pseudo selectors needed to style the scrollbar. ``` css /* width */ ::-webkit-scrollbar { width: 10px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-webkit-scrollbar-thumb { background: #888; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #555; } ``` !!! note This post is a thought [1]. It's a short note that I make about someone else's content online #thoughts [2] References: [1]: /thoughts/ [2]: /tags/thoughts/