HTML <textarea> element
<textarea>Textarea</textarea>
Specific attributes of <style> tag:
Attribute | Description |
autofocus | automatically focus when page loads. HTML5 only |
readonly | text cannot be editted |
name | name of the text area |
disabled | the text area is disabled, cannot be editted or selected |
maxlength | maximum string length of the text. HTML5 only |
cols | string length in a row |
rows | number of rows allowed in the text area |
form | form id associated with. HTML5 only |
placeholder | default value. HTML5 only |
wrap | wrapping type, hard or soft |