Skip to content

Instantly share code, notes, and snippets.

@weeklyd3
Last active May 5, 2021 04:24
Show Gist options
  • Save weeklyd3/3d3afe790ae58316561b40fed4257881 to your computer and use it in GitHub Desktop.
Save weeklyd3/3d3afe790ae58316561b40fed4257881 to your computer and use it in GitHub Desktop.
Disable selection for all buttons.
button {
user-select:none; /* Actual property. */
/* For compatibility with older browsers */
-o-user-select:none; /* Opera browser support */
-ms-user-select:none; /* IE and Microsoft Edge support */
-moz-user-select:none; /* Firefox support */
-webkit-user-select:none; /* Webkit engine (Chrome and Safari) */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment