January 25, 2016

Disable text selection using CSS

 .disabletextsel
{
  
-webkit-touch-callout: none;
  
-webkit-user-select: none;
  
-khtml-user-select: none;
  
-moz-user-select: none;
  
-ms-user-select: none;
  
user-select: none;
}

No comments:

Post a Comment