Elements of type text
create basic single-line text fields. The Try It example in this section will help you make your first text element. Text elements also have many attributes that can be helpful such as list
, maxLength
, minLength
, size
, and a few more. The section also introduces client-side validation of text fields which will be covered in detail later.
Additional attributes
In addition to the attributes that operate on all <input>
elements regardless of their type, text inputs support the following attributes.
list
The values of the list attribute is the id
of a <datalist>
element located in the same document. The <datalist>
provides a list of predefined values to suggest to the user for this
input. Any values in the list that are not compatible with the type
are not included in the suggested options. The values provided are
suggestions, not requirements: users can select from this predefined
list or provide a different value.
maxlength
The maximum string length (measured in UTF-16 code units) that the user can enter into the text
input. This must be an integer value of 0 or higher. If no maxlength
is specified, or an invalid value is specified, the text
input has no maximum length. This value must also be greater than or equal to the value of minlength
.
The input will fail constraint validation if the length of the text value of the field is greater than maxlength
UTF-16 code units long. Constraint validation is only applied when the value is changed by the user.
minlength
The minimum string length (measured in UTF-16 code units) that the user can enter into the text
input. This must be a non-negative integer value smaller than or equal to the value specified by maxlength
. If no minlength
is specified, or an invalid value is specified, the text
input has no minimum length.
The input will fail constraint validation if the length of the text entered into the field is fewer than minlength
UTF-16 code units long. Constraint validation is only applied when the value is changed by the user.
pattern
The pattern
attribute, when specified, is a regular expression that the input's value
must match for the value to pass constraint validation. It must be a valid JavaScript regular expression, as used by the RegExp
type, and as documented in our guide on regular expressions; the 'u'
flag is specified when compiling the regular expression so that the
pattern is treated as a sequence of Unicode code points, instead of as
ASCII. No forward slashes should be specified around the pattern text.
If the specified pattern is not specified or is invalid, no regular expression is applied and this attribute is ignored completely.
Note: Use the title
attribute to specify text that most browsers will display as a tooltip
to explain what the requirements are to match the pattern. You should
also include other explanatory text nearby.
See Specifying a pattern for further details and an example.
placeholder
The placeholder
attribute is a string that provides a brief hint to the user as to what
kind of information is expected in the field. It should be a word or
short phrase that demonstrates the expected type of data, rather than an
explanatory message. The text must not include carriage returns or line feeds.
If the control's content has one directionality (LTR or RTL) but needs to present the placeholder in the opposite directionality, you can use Unicode bidirectional algorithm formatting characters to override directionality within the placeholder; see How to use Unicode controls for bidi text for more information.
Note: Avoid using the placeholder
attribute if you can. It is not as semantically useful as other ways to
explain your form, and can cause unexpected technical issues with your
content. See <input>
accessibility concerns for more information.
readonly
A Boolean attribute which, if present, means this field cannot be edited by the user. Its value
can, however, still be changed by JavaScript code directly setting the HTMLInputElement
value
property.
Note: Because a read-only field cannot have a value, required
does not have any effect on inputs with the readonly
attribute also specified.
size
The size
attribute is a numeric value indicating how many characters wide the
input field should be. The value must be a number greater than zero, and
the default value is 20. Since character widths vary, this may or may
not be exact and should not be relied upon to be so; the resulting input
may be narrower or wider than the specified number of characters,
depending on the characters and the font (font
settings in use).
This does not set a limit on how many characters the user
can enter into the field. It only specifies approximately how many can
be seen at a time. To set an upper limit on the length of the input
data, use the maxlength
attribute.
spellcheck
spellcheck
is a global attribute which is used to indicate whether to enable spell
checking for an element. It can be used on any editable content, but
here we consider specifics related to the use of spellcheck
on <input>
elements. The permitted values for spellcheck
are:
false
-
Disable spell checking for this element.
true
-
Enable spell checking for this element.
""
(empty string) or no value-
Follow the element's default behavior for spell checking. This may be based upon a parent's
spellcheck
setting or other factors.
An input field can have spell checking enabled if it doesn't have the readonly attribute set and is not disabled.
The value returned by reading spellcheck
may not reflect the actual state of spell checking within a control, if the user agent's preferences override the setting.