Custom Scrollbar Styler
Generate CSS for custom styled scrollbars with track color, thumb color, width, and border radius.
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;
}Related tools
CSS Gradient GeneratorCSS
Build beautiful CSS gradients visually with a live preview.
Box Shadow GeneratorCSS
Create CSS box-shadow values visually with multiple shadows and live preview.
Border Radius GeneratorCSS
Visual CSS border-radius editor with per-corner control.
Flexbox PlaygroundCSS
Interactive CSS flexbox layout builder with live preview.
CSS Grid GeneratorCSS
Visual CSS Grid layout generator with cell spanning.
CSS Animation GeneratorCSS
Build CSS @keyframes animations visually with live preview.