<textarea> Tag Attributes

Attributes of the <textarea> tag
global attributes In addition to the personal attributes of the <textarea> tag below, any of the common HTML attributes can also be coded.
cols,
rows
When wrap="hard" is specified, the cols attribute must also be specified.
autofocus="autofocus" Sets the value of the <textarea autofocus> boolean attribute to true. Omitting it sets to false.
disabled="disabled" Sets the value of the <textarea disabled> boolean attribute to true. Omitting it sets to false.
form
maxlength
name
placeholder
readonly="readonly" Sets the value of the <textarea readonly> boolean attribute to true. Omitting it sets to false.
required="required" Sets the value of the <textarea required> boolean attribute to true. Omitting it sets to false.
wrap="soft"
wrap="hard"