Skip to content

Instantly share code, notes, and snippets.

@stefan-jonker
Created January 31, 2017 19:26
Show Gist options
  • Save stefan-jonker/4216b119ee6b000e9e7043883cdccfa6 to your computer and use it in GitHub Desktop.
Save stefan-jonker/4216b119ee6b000e9e7043883cdccfa6 to your computer and use it in GitHub Desktop.
CSS: force iOS scrollbar
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
border: 1px solid #ddd;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0,0,0,.5);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment