Customize scrolling and scroll bar HTML CSS
Tired of clunky, windows 95 scroll bars for your website? why not spice them up with a little css!
For example, here is the scroll bar styling for this very site codingcroc.com :)
/* width */
::-webkit-scrollbar {
width: 20px;
}
/* Scroll bar track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Scroll bar handle */
::-webkit-scrollbar-thumb {
background: #919191;
border-radius: 10px;
}
/* Scroll bar handle on hover */
::-webkit-scrollbar-thumb:hover {
background: chartreuse;
}
SNAPPED!

SNAPPED!
Comments
Post a Comment