This page is Not Ready

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

size

Summary

This article outlines the HTML attribute "size", which allows the user to specify a width in characters of an <input> element.

Applies to ?
The size attribute specifies the visible width, in characters, of an \ element.

Note: The size attribute works with the following input types: text, search, tel, url, email, and password.

Tip: To specify the maximum number of characters allowed in the <input> element, use the maxlength attribute.

Examples

<form action="demo_form.asp">
  Email: <input type="text" name="email" size="35"><br>
  PIN: <input type="text" name="pin" maxlength="4" size="4"><br>
  <input type="submit" value="Submit">
</form>

Syntax

Standards information

See also

Related articles

Fonts

HTML

Text

Related pages

  • baseFont
  • font

Attributions