Last Updated: February 25, 2016
·
749
· modaloda

Disable text selection

This snippet disables text selection on all browsers.

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

4 Responses
Add your response

In combination with 'cursor: default;' this is really awesome!

over 1 year ago ·

Awesome.
No longer need javascript for this :)

over 1 year ago ·
over 1 year ago ·

Is there a use for this that doesn't make your users instantly hate you?

over 1 year ago ·