Created
September 16, 2017 03:46
-
-
Save juliobetta/3a6f4b04eb89b3a77da9ce6036f78535 to your computer and use it in GitHub Desktop.
Hide scrollbar, keeping the original behavior
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
.container { | |
-ms-overflow-style: none; /* IE 10+ */ | |
overflow: -moz-scrollbars-none; /* Firefox */ | |
} | |
.container::-webkit-scrollbar { | |
display: none; /* Safari and Chrome */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment