Example
Define an image as the submit button, with height and width attributes:
<form action="demo_form.asp">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="image" src="img_submit.gif" alt="Submit" width="48"
height="48">
</form>
Try it Yourself »
Definition and Usage
The height attribute specifies the height of the <input> element.
Note: The height attribute is used only with <input type="image">.
Tip: Always specify both the height and width attributes for images. If height and width are set, the space required for the image is reserved when the page is loaded. However, without these attributes, the browser does not know the size of the image, and cannot reserve the appropriate space to it. The effect will be that the page layout will change during loading (while the images load).
Browser Support
The numbers in the table specify the first browser version that fully supports the attribute.
Attribute | |||||
---|---|---|---|---|---|
height | 1.0 | Yes | 16.0 | Yes | 1.0 |
Differences Between HTML 4.01 and HTML5
The height attribute is new for the <input> tag in HTML5.
Syntax
<input height="pixels">
Attribute Values
Value | Description |
---|---|
pixels | The height in pixels (e.g. height="100") |