Skip to content

Instantly share code, notes, and snippets.

@sabrysuleiman
Created July 27, 2026 19:11
Show Gist options
  • Select an option

  • Save sabrysuleiman/a03c342a7100b1968b6de18af941ac37 to your computer and use it in GitHub Desktop.

Select an option

Save sabrysuleiman/a03c342a7100b1968b6de18af941ac37 to your computer and use it in GitHub Desktop.
Prevent Mouse Selection
/* ---------------------------------------
# Prevent Mouse Selection
--------------------------------------- */
body,
html {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
input,
textarea,
select,
[contenteditable="true"] {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment