Skip to content

Instantly share code, notes, and snippets.

@mfcodeworks
Last active July 26, 2019 09:49
Show Gist options
  • Save mfcodeworks/c8bba985a8320b539d7ef5f7274b6f83 to your computer and use it in GitHub Desktop.
Save mfcodeworks/c8bba985a8320b539d7ef5f7274b6f83 to your computer and use it in GitHub Desktop.
CSS hide scrollbar for all browsers
html, body, .class, #id {
overflow: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
::-webkit-scrollbar {
width: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment