HTML/CSS/Basic Attributes/unselectable

Материал из Web эксперт
Перейти к: навигация, поиск

"unselectable" specifies whether or not an element can be selected

    
<HTML>
<head>
</head>
<BODY>
    <p unselectable="on">
     selectable text.
    </p>
    <p unselectable="off">
     unselected text
    </p>
</BODY>
</HTML>