Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save konrad-gibaszewski/4655360 to your computer and use it in GitHub Desktop.
Save konrad-gibaszewski/4655360 to your computer and use it in GitHub Desktop.
Prevent any object from being highlighted upon touch event
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
/* https://developer.mozilla.org/en-US/docs/CSS/user-select */
@konrad-gibaszewski
Copy link
Author

Added -o-user-select for future compatibility.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment