The CSS scrollbars styling module defines properties that you can use for visual styling of scrollbars. You can customize the width of the scrollbar as required. You can also customize the color of the scrollbar track, which is the background of the scrollbar, and the color of the scrollbar thumb, which is the draggable handle of the scrollbar.
This example defines a thin scrollbar with a red thumb and an orange track. To view the thumb, you will need to scroll the text. After the scrollbar is visible, hover over it to see the track.
.poem {
overflow: scroll;
scrollbar-color: red orange;
scrollbar-width: thin;
}
Note: When customizing scrollbars, ensure that the thumb and track have enough contrast with the surrounding background. Also ensure that the scrollbar hit area is large enough for people who use touch input.
overflow-block CSS propertyoverflow-inline CSS propertyoverflow-x CSS propertyoverflow-y CSS propertyoverflow CSS shorthand propertyoverflow-clip-margin CSS propertyscrollbar-gutter CSS propertyscroll-behavior CSS propertyscroll-margin CSS shorthand propertyscroll-padding CSS shorthand propertyscroll-snap-align CSS propertyscroll-snap-stop CSS propertyscroll-snap-type CSS property::-webkit-scrollbar pseudo-elementscrollbar ARIA role| Specification |
|---|
| CSS Scrollbars Styling Module Level 1> |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_scrollbars_styling