Skip to content

Instantly share code, notes, and snippets.

@edysegura
Created March 19, 2015 14:09
Show Gist options
  • Save edysegura/a0750242b3f2a7b5318d to your computer and use it in GitHub Desktop.
Save edysegura/a0750242b3f2a7b5318d to your computer and use it in GitHub Desktop.
[CSS] How to disable user selection
.no-selection {
-webkit-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