Created
June 24, 2019 12:30
-
-
Save yusupova/be262d6e4373343222809e578952b7b9 to your computer and use it in GitHub Desktop.
Dont show scrollbar but able to scroll
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
.container { | |
overflow-y: scroll; | |
scrollbar-width: none; /* Firefox */ | |
-ms-overflow-style: none; /* IE 10+ */ | |
} | |
.container::-webkit-scrollbar { /* WebKit */ | |
width: 0; | |
height: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment