Skip to content

Instantly share code, notes, and snippets.

@jscodelover
Created October 14, 2020 10:53
Show Gist options
  • Save jscodelover/338ac410c17de633070e1e07982988ee to your computer and use it in GitHub Desktop.
Save jscodelover/338ac410c17de633070e1e07982988ee to your computer and use it in GitHub Desktop.
hide the scroll and still scroll the element
div{
overflow-x: scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
&::-webkit-scrollbar {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment