Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

disable text selection html


<div 
 style="-moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select:none;
        user-select:none;
        -o-user-select:none;"
     
 unselectable="on"
 onselectstart="return false;" 
 onmousedown="return false;">
    Blabla
</div>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #disable #text #selection #html
ADD COMMENT
Topic
Name
6+9 =