Open In App

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>
<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: 

Article Tags :