<!DOCTYPE html>
<html>
<head>
<title>Заголовок документа</title>
<style>
div {
-webkit-user-select: all; /* Safari 3.1+ */
-moz-user-select: all; /* Firefox 2+ */
user-select: all; /* Standard syntax */
}
</style>
</head>
<body>
<h2>Пример свойства user-select</h2>
<div>Lorem Ipsum - это текст-"рыба".</div>
</body>
</html>