Skip to content

Instantly share code, notes, and snippets.

@matheusmurta
Created March 7, 2019 16:19
Show Gist options
  • Save matheusmurta/4fbd3829c1eded68e787a4029e395de2 to your computer and use it in GitHub Desktop.
Save matheusmurta/4fbd3829c1eded68e787a4029e395de2 to your computer and use it in GitHub Desktop.
Hiding the scrollbar on div
.scroll-wrapper{
overflow-x: scroll;
}
.scroll-wrapper::-webkit-scrollbar {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment