Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to remove text selection in css

/*Copy below for all browsers */
* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}
 
PREVIOUS NEXT
Tagged: #remove #text #selection #css
ADD COMMENT
Topic
Name
6+9 =