Open In App

HTML | <input> width Attribute

Last Updated : 12 May, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

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: 

HTML
<!DOCTYPE html>
<html>
<body style="text-align:center;">

    <h1 style="color:green;">
            GeeksForGeeks
        </h1>

    <h2>HTML Input width Attribute</h2>
    <input id="myImage"
        type="image"
        src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
        alt="Submit"
        width="48"
        height="48" />

</body>

</html>                    

Output: 


 


Supported Browsers: 

  • Google Chrome 1.0
  • Firefox 16.0
  • Edge
  • Opera 1.0
  • Apple Safari

Next Article

Similar Reads