Skip to content

Instantly share code, notes, and snippets.

@yusupova
Created June 24, 2019 12:30
Show Gist options
  • Save yusupova/be262d6e4373343222809e578952b7b9 to your computer and use it in GitHub Desktop.
Save yusupova/be262d6e4373343222809e578952b7b9 to your computer and use it in GitHub Desktop.
Dont show scrollbar but able to scroll
.container {
overflow-y: scroll;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE 10+ */
}
.container::-webkit-scrollbar { /* WebKit */
width: 0;
height: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment