Disable Copy Content in Your Website With CSS
by muthu[ Edit ] 2013-10-23 11:41:26
Disable Copy Content in Your Website With CSS
CSS selector
CSS selector class of ::selection is used to disable your users from highlighting the text.
it does not allow others copy your content and use it into their own website.
Css Code
.not_select {
-webkit-touch-callout:none;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
-o-user-select:none;
user-select:none;
}