HTML/CSS/Form Attributes/readonly

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

"readonly": Whether the content of an element is read-only or not

    
<HTML>
<BODY>
<input type="text" 
       name="tfd" 
       value="This text field is not editable" readonly 
       size="30">
</BODY>
</HTML>