HTML CSS Reference/HTML Attributes Reference/rows textarea

Материал из Web эксперт
Версия от 11:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"rows" Example

   <source lang="html4strict">
   

<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>


     </source>
   
  


"rows" is applied to

   <source lang="html4strict">

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

     </source>
   
  


"rows" Syntax and Note

   <source lang="html4strict">

Note:

Sets the height. The value is indicated by an integer.

Syntax:

<textarea rows="value"> . . . </textarea>


     </source>