Disable Selection of Particular area using CSS3 Property user-select

By | December 12, 2013

CSS3 allows to disable the selection of particular area using user-select property. This property will be useful in websites, which doesn’t wants user to copy particular content by selection. We can copy the unselectable area by other means, but its a primary step to disable particular area selection.

 

User-select CSS3 Code

[code type=css]
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
[/code]

 

Demo

Select Here….Select Here….Select Here….Select Here….Select Here….

 
 

Leave a Reply

Your email address will not be published. Required fields are marked *