Created
April 1, 2019 10:58
-
-
Save mihaiserban/b74904d43c4e812b38a6ac23dcd8b77f to your computer and use it in GitHub Desktop.
custom scrollbar ::-webkit-scrollbar
This file contains 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
/* total width */ | |
::-webkit-scrollbar { | |
width: 14px; | |
} | |
::-webkit-scrollbar-track { | |
box-shadow: inset 0 0 14px 14px transparent; | |
border: solid 4px transparent; | |
} | |
::-webkit-scrollbar-thumb { | |
box-shadow: inset 0 0 14px 14px #bbbbbe; | |
border: solid 4px transparent; | |
border-radius: 14px; | |
} | |
/* set button(top and bottom of the scrollbar) */ | |
::-webkit-scrollbar-button { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment