Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kapillamba4/fd582b2b9601491230f629d20c274d87 to your computer and use it in GitHub Desktop.
Save kapillamba4/fd582b2b9601491230f629d20c274d87 to your computer and use it in GitHub Desktop.
CSS: no-select
.no-select{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment