following are the attributes of textarea tag
Answers
Answered by
1
Answer:
i hope this will help:
An id attribute to allow the <textarea> to be associated with a <label> element for accessibility purposes
A name attribute to set the name of the associated data point submitted to the server when the form is submitted.
rows and cols attributes to allow you to specify an exact size for the <textarea> to take. Setting these is a good idea for consistency, as browser defaults can differ.
Default content entered between the opening and closing tags. <textarea> does not support the value attribute.
The <textarea> element also accepts several attributes common to form <input>s, such as autocomplete, autofocus, disabled, placeholder, readonly, and required.
Similar questions