Last active
January 9, 2021 07:15
-
-
Save nirmalkar/2280f59b85fa2fe693ef680ebcaf39ca to your computer and use it in GitHub Desktop.
Hide Scrollbars
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
/* Hide scrollbar for Chrome, Safari and Opera */ | |
::-webkit-scrollbar { | |
display: none; | |
} | |
/* Hide scrollbar for IE, Edge and Firefox */ | |
html { | |
-ms-overflow-style: none; /* IE and Edge */ | |
scrollbar-width: none; /* Firefox */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment