Text area input control  - <TEXTAREA>   -  </TEXTAREA>

Previous- TD - Table Cell  |  Next-TFOOT - Table footer

Description
Defines a multi line input control for use within a form. A textarea is useful for providing a space for the user to type in free text information, and has the drawback that there is no immediate way to prevent them typing in more information than the form's action can process.
Attributes
NameValuesDescription
accesskeykey_character
aligntop|middle|bottom|left|right|absmiddle|baseline|absbottom|texttopAlignment
classclassnameClass of the element which is used to associate the element with a style sheet.
colsnumber
datafldcolumn_name
datasrcid
dirltr|rtlThe direction in which text flows when surrounded by text which flows in different directions.
disabled
event_namescript_codeDefines script to run on event such as OnMouseOver
idstringA unique name to identify an element.
langlanguage_typeThe ISO description for the language of the element.
languagejavascript|jscript|vbscript|vbs
namestringNames a tag, particularly important in client side progamming and essential when submitting form data.
readonly
rowsnumber
stylestringSpecifies style information for the element.
tabindexnumberAllocates a tab order to over-ride the order of the elements on the web page.
titlestringTitle for element which is often displayed as a tool-tip when the cursor hovers over the element.
wrapphysical|verical|off

Example
<form>
comments : <textarea cols="40" rows="5">replace this with your own comments.</textarea>
</form>
Will be displayed as :
comments :

Compatability
HTMLNETSCAPEINTERNET EXPLORER
4.1N2N3N4N6IE3IE4IE5IE6
YES YES YES YES YES YES YES YES YES

Previous- TD - Table Cell  |  Next-TFOOT - Table footer