---
title: "How To Create a Custom Scrollbar"
description: "!https://www.w3schools.com/howto/howto_custom_scrollbar.asp"
date: 2023-10-12
published: true
tags:
  - css
  - dev
  - thought
  - webdev
template: link
---


![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;
}
```
