Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

Disable text selection/highlight

.disable-select {
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}
Source by www.arungudelli.com #
 
PREVIOUS NEXT
Tagged: #Disable #text
ADD COMMENT
Topic
Name
3+8 =