Skip to content

Instantly share code, notes, and snippets.

@YasinKuralay
Created May 11, 2021 10:02
Show Gist options
  • Save YasinKuralay/24f7c35f54800c0b21a024b3236fb219 to your computer and use it in GitHub Desktop.
Save YasinKuralay/24f7c35f54800c0b21a024b3236fb219 to your computer and use it in GitHub Desktop.
No Text Select CSS
.unselectable {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.all {
-moz-user-select: all;
-webkit-user-select: all;
-ms-user-select: all;
user-select: all;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment