Open In App

HTML | <input> width Attribute

Last Updated : 12 May, 2021
Improve
Improve
Like Article
Like
Save
Share
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=
        alt="Submit"
        width="48"
        height="48" />
 
</body>
 
</html>


Output: 

 

Supported Browsers: 

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads