HTML <input> 标签的 size 属性
size 属性规定输入字段的宽度。
对于 <input type="text"> 和 <input type="password">,size 属性定义的是可见的字符数。而对于其他类型,size 属性定义的是以像素为单位的输入字段宽度。
1. 语法
<input size="value">
属性值
值 | 描述 |
---|---|
characters/pixels | input 元素的宽度。 |
2. 范例
下面这个 HTML 表单分别有两个输入字段,宽度分别是 35 个字符和 18 个字符:
<form action="form_action.html" method="get"> <p>Email: <input type="text" name="email" size="35" /></p> <p>PIN: <input type="text" name="pin" maxlength="18" size="18" /></p> <input type="submit" value="Submit" /> </form>
3. 兼容性提示
由于 size 属性是一个可视化的设计属性,我们推荐您使用 CSS 来代替它。
CSS 语法:<input style="width:100px" />
HTML <input> 标签的 src 属性:src 属性只能与 <input type="image"> 配合使用。它规定作为提交按钮显示的图像的 URL。src 属性必须与 <input type="image"> 同时使用。