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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。