Friday, 23 January 2015

Filled Under: ,

Unable Selection With CSS

Just apply this CSS to your HTML element & this CSS rule will disable text selection highlighting.

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

0 comments:

Post a Comment