How To Prevent Text Selection On DoubleClick Using CSS Only

This is of course for non-IE browsers:
1 2 3 4 5 |
.myclass { -webkit-user-select: none; -moz-user-select: none; -khtml-user-select: none; } |
![]() |
This is of course for non-IE browsers:
1 2 3 4 5 |
.myclass { -webkit-user-select: none; -moz-user-select: none; -khtml-user-select: none; } |
Leave Your Comment
All fields marked with "*" are required.