Skip to content

Instantly share code, notes, and snippets.

@benjamindean
Last active August 29, 2015 14:06
Show Gist options
  • Save benjamindean/48befc34247498011a05 to your computer and use it in GitHub Desktop.
Save benjamindean/48befc34247498011a05 to your computer and use it in GitHub Desktop.
Disable element selection
@mixin noSelection {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-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