HTML <input> width属性用于指定<input>元素的宽度。该属性仅用于输入类型=“ image”。
用法:
<input width="pixels">
属性值:它包含值,即指定输入元素宽度的像素。
例:
<!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=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
width="70"
height="48" />
</body>
</html>
输出:
支持的浏览器:
- 谷歌浏览器1.0
- Firefox 16.0
- Edge
- Opera 1.0
- 苹果Safari
相关用法
- HTML <th> width属性用法及代码示例
- HTML <col> width属性用法及代码示例
- HTML <img> width属性用法及代码示例
- HTML <pre> width属性用法及代码示例
- HTML <td> width属性用法及代码示例
- HTML <object> width属性用法及代码示例
- HTML <canvas> width属性用法及代码示例
- HTML Marquee width用法及代码示例
- HTML <colgroup> width属性用法及代码示例
- HTML <iframe> width属性用法及代码示例
- HTML <embed> width属性用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <input> width Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。