Skip to content

Instantly share code, notes, and snippets.

@MacKentoch
Last active May 26, 2019 05:47
Show Gist options
  • Save MacKentoch/a844b1ad99d45bc7be53b035d4a43705 to your computer and use it in GitHub Desktop.
Save MacKentoch/a844b1ad99d45bc7be53b035d4a43705 to your computer and use it in GitHub Desktop.

webkit (Chrome, Safari, latest Opera versions):

element::-webkit-scrollbar {
  width: 0 !important;
}

moz (Firefox):

element {
  overflow: -moz-scrollbars-none;
}

ms (IE 10+):

element {
  -ms-overflow-style: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment