The textarea tag defines a multi-line text input control. A text area can hold an unlimited number of characters, and the text renders in a fixed-width font (usually Courier). The size of a text area can be specified by the cols and rows attributes, or even better; through CSS' height and width properties.
The form element that the textarea element is associated with (its "form owner"). The value of the attribute must be the id of a form element in the same document. ... This attribute enables you to place textarea elements anywhere within a document, not just as descendants of form elements
0 Comments