欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

input 标签 中的size和width的区别

程序员文章站 2022-04-01 12:02:30
...


    [1]
    示例:
     <input type="text" value=""  style="width:200px"/>
     <input type="text"  value="" size="30"/>




    [2]size 和width的区别:

         对于 <input type="text"> 和 <input type="password">,size 属性定义的是可见的字符数。而对于其他类型,size 属性定义的是以像素为单位的输入字段宽度。
        css 的 width 属性设置元素的宽度。
        注:input标签没有width属性,因此 <input type="text" value=""  width="200px"/> 是没有效果的。