css non selectable code example
Example 1: no select css
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Example 2: how to make text not highlightable css
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
Example 3: html text not markable
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}