Skip to content

Instantly share code, notes, and snippets.

@d4rkd0s
Created June 9, 2022 03:32
Show Gist options
  • Save d4rkd0s/6bc8096f8e296e05e28fe8b77ecb3c9e to your computer and use it in GitHub Desktop.
Save d4rkd0s/6bc8096f8e296e05e28fe8b77ecb3c9e to your computer and use it in GitHub Desktop.
user select none globally
* {
/* Keyword value */
user-select: none;
/* Mozilla-specific value */
-moz-user-select: none;
/* WebKit-specific value */
-webkit-user-select: none;
/* Microsoft-specific value */
-ms-user-select: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment