Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/9d08c8a09f5848872170fe5d79590cb0 to your computer and use it in GitHub Desktop.
Save Farmatique/9d08c8a09f5848872170fe5d79590cb0 to your computer and use it in GitHub Desktop.
Hide scrollbar on body
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