TIL about adding Styling to scrollbars
POSTED ON:
TAGS: css webdev codepen scrollbar
You can design your scrollbars to give them a nice attractive look to it!
Yoinked the CSS-Tricks template and tested.
Direct Link: https://codepen.io/rockykev/pen/yLJLEaq
See the Pen CSS-Tricks Almanac: Scrollbars by rockykev (@rockykev) on CodePen.
body::-webkit-scrollbar {
width: 3em;
background-color: lightgreen;
}
body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
body::-webkit-scrollbar-thumb {
background-color: orange;
border-radius: 4rem;
}
Excellent coverage too on Can I Use
More info:
https://css-tricks.com/the-current-state-of-styling-scrollbars/
Related TILs
Tagged: css