|
Text Area
The following example shows using textarea tag. For texarea wrapping of text is enabled by default.
Attribute wrap="off" disables text wrapping.
05 | < textarea rows = "4" cols = "64" > |
06 | Text area with 4 rows and 64 columns. Text area with 4 rows and 64 columns. Text area with 4 rows and 64 columns. |
09 | < textarea rows = "4" cols = "64" wrap = "off" > |
10 | Text area with 4 rows and 64 columns with text wrap disabled. Text area with 4 rows and 64 columns with text wrap disabled. |
13 | < textarea rows = "12" cols = "10" > |
14 | Text area with 16 rows and 10 columns. |
|
It gives the following output,
|
|