width属性指图像按钮的宽度。width 属性只适用于 <input type="image">。
本案例设置了input元素的高度和宽度。
<form action="/Template/Test/php/form_method.php"> 姓氏:<input type="text" name="xing" value="张" style="width:158px;height:30px"><br> 名字: <input type="text" name="ming" value="三" style="width:158px;height:30px"><br> <input type="image" src="/Template/Test/img/778.png" width="55" height="55"> </form>
![]() | input的width属性只对type="image"情况下起作用,可参考<img> 标签 height和width属性,如果想对input元素设置高度和宽度请使用css样式 style="width:158px;height:30px"。 |
<input width="像素值">
值 | 描述 |
---|---|
属性值 | 默认以像素为单位PX(比如 width="100")。 |
百分比 | 以百分比为单位(比如 width="10%") |