Skip to content

Instantly share code, notes, and snippets.

@kalinchernev
Created October 23, 2014 12:11
Show Gist options
  • Save kalinchernev/2f3ed87cc14bfe7d5e2a to your computer and use it in GitHub Desktop.
Save kalinchernev/2f3ed87cc14bfe7d5e2a to your computer and use it in GitHub Desktop.
cross-browser way to disable highlighting selection
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment