Disable Copy Content in Your Website With CSS

by muthu 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.

disable_copy_content.jpg

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;
}
791
like
0
dislike
0
mail
flag

You must LOGIN to add comments