Path: blob/main/files/en-us/web/html/attributes/size/index.md
6532 views
------{{HTMLSidebar}}
The size attribute defines the width of the {{htmlelement('input')}} and the height of the {{htmlelement('select')}} element. For the input, if the type attribute is {{HTMLElement("input/text", "text")}} or {{HTMLElement("input/password", "password")}} then it's the number of characters. This must be an integer value 0 or higher. If no size is specified, or an invalid value is specified, the input has no size declared, and the form control will be the default width based on the user agent. If CSS targets the element with properties impacting the width, CSS takes precedence.
The size attribute has no impact on constraint validation.
{{EmbedInteractiveExample("pages/tabbed/attribute-size.html", "tabbed-standard")}}
Examples
By adding size on some input types, the width of the input can be controlled. Adding size on a select changes the height, defining how many options are visible in the closed state.
{{EmbedLiveSample('Examples', '100%', 200)}}
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}