Skip to content

Instantly share code, notes, and snippets.

@guidoschmidt
Created October 28, 2022 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guidoschmidt/8404f30ff6b2d7b661bf2e3242fc52dc to your computer and use it in GitHub Desktop.
Save guidoschmidt/8404f30ff6b2d7b661bf2e3242fc52dc to your computer and use it in GitHub Desktop.
Hide Scrollbars
/* Hide scrollbar for Chrome, Safari and Opera */
.scrollable::-webkit-scrollbar {
display: none;
}
.scrollable {
/* Hide scrollbar for IE, Edge and Firefox */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment