Skip to content

Instantly share code, notes, and snippets.

@ruandre
Last active February 7, 2022 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruandre/38eebbc2948178a677bbf13f6a5f2589 to your computer and use it in GitHub Desktop.
Save ruandre/38eebbc2948178a677bbf13f6a5f2589 to your computer and use it in GitHub Desktop.
Disable annoying highlight/select on click
/*
Disable annoying highlight/select on click
https://css-tricks.com/almanac/properties/u/user-select/
*/
.button {
-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