Skip to content

Instantly share code, notes, and snippets.

@juliobetta
Created September 16, 2017 03:46
Show Gist options
  • Save juliobetta/3a6f4b04eb89b3a77da9ce6036f78535 to your computer and use it in GitHub Desktop.
Save juliobetta/3a6f4b04eb89b3a77da9ce6036f78535 to your computer and use it in GitHub Desktop.
Hide scrollbar, keeping the original behavior
.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