HTML CSS Reference/HTML Attributes Reference/rows textarea

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

"rows" Example

    
<HTML>
<head><Title>Example For rows</Title></head>
<BODY>
<textarea cols="10" rows="10">This is a sample text containing more than the 10 characters specified.</textarea>
<textarea cols="10" rows="10">1234567890</textarea>
</BODY>
</HTML>



"rows" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |<textarea>                                                    |
+----------------+--------------------------------------------------------------+



"rows" Syntax and Note

Note:
    
Sets the height. 
The value is indicated by an integer.
    
Syntax:
    
<textarea rows="value"> . . . </textarea>