HTML | <input> width Attribute
The HTML <input> width Attribute is used to specify the width of the <input> element. This Attribute is only used for input type=”image”.
Syntax:
<input width="pixels">
Attribute Values: It contains the value i.e pixels which specify the width of the input Element.
Example:
<!DOCTYPE html> < html > < head > < title > HTML Input Image Attribute </ title > </ head > < body style = "text-align:center;" > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >HTML Input image Attribute</ h2 > < input id = "myImage" type = "image" src = alt = "Submit" width = "70" height = "48" /> </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers:
- Google Chrome 1.0
- Firefox 16.0
- Edge
- Opera 1.0
- Apple Safari
Recommended Posts:
- HTML | <th> width Attribute
- HTML | <col> width Attribute
- HTML | <img> width Attribute
- HTML | <td> width Attribute
- HTML | <pre> width Attribute
- HTML | <col> width Attribute
- HTML | <hr> width Attribute
- HTML | Marquee width attribute
- HTML | <object> width Attribute
- HTML | <iframe> width Attribute
- HTML | <canvas> width Attribute
- HTML <video> width Attribute
- HTML | <embed> width Attribute
- HTML | <table> width Attribute
- HTML | <colgroup> width Attribute
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.