Created
May 11, 2021 10:02
-
-
Save YasinKuralay/24f7c35f54800c0b21a024b3236fb219 to your computer and use it in GitHub Desktop.
No Text Select CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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