I know that we can use javascript to achieve this but disabling the javascript in the web browser, user can easily copy text. Is there any way for this using CSS?
|
|
|||||||||||||||||||
|
|
If you don't want someone copying your text, don't place it on the web. The web's source is visible, free to read, and to copy. Even with all the CSS, JavaScript or imagary tricks you may pull off, nothing will prevent a user from manually reading and copying your text to a different document/location. The best you can probably hope to do is to annoy people enough to discourage them from copying your text. But like all other things, someone persistent would be able to pull it off. That's what us humans do. |
|||||||||||||||||
|
|
There's no way to stop someone sufficiently determined from copying the text of your website. Even if there was some hypothetical perfect way of blocking copying and pasting or downloading the pages to only be viewed and not saved (which there isn't), someone with enough time and motivation can just type out the text by hand if they really wanted it. The web is designed to be open. And a good thing that it is too. Extracting the data from a web page authored in 1991 isn't particularly difficult. Try doing the same thing with a Microsoft Word document from the same era without using a Microsoft product. |
|||
|
|
Similar question here with some good answers so I won't cover old ground Whatever you do, the user is still going to be able to view the source of the page and copy anything from there. The only way to totally prevent it is not to display any text at all (e.g. display an image, or dynamically create an image which isn't great for accessibility) |
|||
|
|
|
I personally do this with jQuery:
There are some JavaScript alternative's for this like found on this page: http://www.javascriptbank.com/disable-text-selection.html I am not aware of a cross browser CSS alternative to do this though. |
|||||||
|
|
The web is open source, free to read, there is no way to warn people to copy content even with java script but you can warn via CSS. trick like below. Try this...
|
|||||||||||||||||||
|
|
Unfortunately, it is not possible. The |
|||
|
|
This is a good way to prevent user from selecting text. And this is not a bad answer. For instance, if you work on a website that uses Canvas (HTML5) and allows users to drag'n'drop stuff on this canvas; if the user is going out of canvas defined zone, text will start to get 'selected'. Which is ugly. So for obvious ergonomic reasons, this is a good way to go. |
|||
|
|