Created
July 27, 2026 19:11
-
-
Save sabrysuleiman/a03c342a7100b1968b6de18af941ac37 to your computer and use it in GitHub Desktop.
Prevent Mouse Selection
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
| /* --------------------------------------- | |
| # 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