Custom Scrollbar Styler
Generate CSS for custom styled scrollbars with track color, thumb color, width, and border radius.
AdSense
Top banner
Preview
Settings
CSS Selector
Track Color
Thumb Color
Thumb Hover Color
Width10px
Border Radius5px
All Browsers CSS
/* Firefox */
.custom-scroll {
scrollbar-width: auto;
scrollbar-color: #94a3b8 #f1f5f9;
}
/* Chrome, Edge, Safari */
.custom-scroll::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.custom-scroll::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 5px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background: #94a3b8;
border-radius: 5px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background: #64748b;
}WebKit CSS (Chrome, Edge, Safari)
.custom-scroll::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.custom-scroll::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 5px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background: #94a3b8;
border-radius: 5px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background: #64748b;
}Standard CSS (Firefox)
.custom-scroll {
scrollbar-width: auto;
scrollbar-color: #94a3b8 #f1f5f9;
}Was this page helpful?