Created
July 11, 2018 10:53
-
-
Save Farmatique/9d08c8a09f5848872170fe5d79590cb0 to your computer and use it in GitHub Desktop.
Hide scrollbar on body
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
body{ | |
-ms-overflow-style: none; // IE 10+ | |
overflow: -moz-scrollbars-none; // Firefox | |
} | |
body::-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