Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Звголовок документа</title> <style> div { -webkit-user-select: auto; /* Safari 3.1+ */ -moz-user-select: auto; /* Firefox 2+ */ user-select: auto; /* Standard syntax */ } </style> </head> <body> <h2>Пример свойства user-select</h2> <div>Lorem Ipsum - это текст-"рыба".</div> </body> </html>