Answers for "css stop text from being highlightable"

CSS
5

how to make text not highlightable css

-webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
Posted by: Guest on May-02-2020

Code answers related to "css stop text from being highlightable"

Browse Popular Code Answers by Language