Disable text selection

This commit is contained in:
Manos Katsomallos 2024-01-05 13:12:11 +02:00
parent aa1da2e296
commit 490557727f

View File

@ -8,8 +8,9 @@ body, html {
margin: 0; margin: 0;
/* Disable text selection */ /* Disable text selection */
-webkit-user-select: none; /* Safari */ -webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */ -moz-user-select: none; /* Firefox */
user-select: none; /* Standard syntax */ -ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Safari */
} }
body { body {