Skip to content

Instantly share code, notes, and snippets.

@mazhar266
Created March 5, 2014 19:47
Show Gist options
  • Save mazhar266/9375073 to your computer and use it in GitHub Desktop.
Save mazhar266/9375073 to your computer and use it in GitHub Desktop.
Prohibit text selection using CSS
.protected {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
pointer: default;
cursor: default;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment