Created
September 29, 2021 14:40
-
-
Save 8dcc/e0eff5e073a6798711e80a322f440443 to your computer and use it in GitHub Desktop.
Custom scrollbar for html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::-webkit-scrollbar { | |
width: 10px; | |
} | |
::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} | |
::-webkit-scrollbar-thumb { | |
background: #999; | |
border-radius: 5px; | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background: #777; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment