Table of contents
- 1. Summary
- 2. Usage context
- 3. Attributes
- 4. DOM interface
- 5. Resizable textareas
- 6. Examples
- 6.1.1. Result
- 7. Compatibility
- 7.1. Gecko notes
- 8. See also
Summary
The textarea (<textarea>
) HTML element represents a multi-line plain-text editing control.
Usage context
| Content categories | Flow content; phrasing content; interactive content; listed, labelable, submittable, resettable form-associated element. |
| Permitted content | Character data |
| Tag omission | None, must have both a start tag and an end tag. |
| Permitted parent elements | Any element that accepts phrasing content |
| Normative document | HTML 5, section 4.10.3; HTML 4.01, section 17.7 |
Attributes
Like all other HTML elements, this element supports the global attributes.
-
autofocusHTML5 - This Boolean attribute lets you specify that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form-associated element in a document can have this attribute specified.
-
cols - The visible width of the text control, in average character widths. If it is specified, it must be a positive integer. If it is not specified, the default value is 20 (HTML5).
-
disabled - This Boolean attribute indicates that the user cannot interact with the control. (If this attribute is not specified, the control inherits its setting from the containing element, for example
<fieldset>; if there is no containing element with thedisabledattribute set, then the control is enabled.) -
formHTML5 - The form element that the textarea element is associated with (its "form owner"). The value of the attribute must be an ID of a form element in the same document. If this attribute is not specified, the textarea element must be a descendant of a form element. This attribute enables you to place textarea elements anywhere within a document, not just as descendants of their form elements.
-
maxlengthHTML5 - The maximum number of characters (Unicode code points) that the user can enter. If it is not specified, the user can enter an unlimited number of characters.
-
name - The name of the control.
-
placeholderHTML5 - A hint to the user of what can be entered in the control. The placeholder text must not contain carriage returns or line-feeds.
-
readonly - This Boolean attribute indicates that the user cannot modify the value of the control. Unlike the
disabledattribute, thereadonlyattribute does not prevent the user from clicking or selecting in the control. The value of a read-only control is still submitted with the form. -
requiredHTML5 - This attribute specifies that the user must fill in a value before submitting a form.
-
rows - The number of visible text lines for the control.
-
selectionDirectionHTML5 - The direction in which selection occurred. This is "forward" if the selection was made from left-to-right in an LTR locale or right-to-left in an RTL locale, or "backward" if the selection was made in the opposite direction. This can be "none" if the selection direction is unknown.
-
selectionEnd - The index to the last character in the current selection.
-
selectionStart - The index to the first character in the current selection.
-
wrapHTML5 - Indicates how the control wraps text. Possible values are:
- hard: The browser automatically inserts line breaks (CR+LF) so that each line has no more than the width of the control; the
colsattribute must be specified. - soft: The browser ensures that all line breaks in the value consist of a CR+LF pair, but does not insert any additional line breaks.
If this attribute is not specified, soft is its default value.
- hard: The browser automatically inserts line breaks (CR+LF) so that each line has no more than the width of the control; the
DOM interface
This element implements the HTMLTextAreaElement interface.
Resizable textareas
Gecko 2.0 introduced support for resizable textareas. This is controlled by the resize
CSS property. Resizing of textareas is enabled by default, but you can explicitly disable it by including the following CSS:
textarea {
resize: none;
}
Examples
<textarea name="textarea" rows="10" cols="50">Write something here</textarea>
Result

Compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
autofocus attribute | (Yes) | 4.0 (2.0) | -- | (Yes) | (Yes) |
maxlength attribute | (Yes) | 4.0 (2.0) | -- | (Yes) | (Yes) |
placeholder attribute | (Yes) | 4.0 (2.0) | -- | (Yes) | (Yes) |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
autofocus attribute | ? | 4.0 (2.0) | -- | ? | ? |
maxlength attribute | ? | 4.0 (2.0) | -- | ? | ? |
placeholder attribute | ? | 4.0 (2.0) | -- | ? | ? |
Gecko notes
Starting in Gecko 6.0 (Firefox 6.0 / Thunderbird 6.0 / SeaMonkey 2.3)
, when a <textarea>
is focused, the insertion point is placed at the beginning of the text by default, instead of at the end. This change makes Gecko's behavior consistent with other popular browsers.
See also
Other form-related elements: <form>
, <button>
, <datalist>
, <legend>
, <label>
, <select>
, <optgroup>
, <option>
, <input>
, <keygen>
, <fieldset>
, <output>
, <progress>
and <meter>
.
Mozilla Developer Network