how many characters are possible in an input field in html?

前端 未结 6 1891
小蘑菇
小蘑菇 2020-12-01 14:35

What is the \"natural\" number of allowed characters in an input field in html?

thanks a lot

addition due to the comments

i don\'t n

6条回答
  •  一个人的身影
    2020-12-01 15:22

    The number of visible characters is dependent on the size of the input element, but also on the style of that element: a wide box put in a shallow container (e.g., a div or form) will not show all the characters in the field.

    See W3Schools explanation on INPUT, paying attention to size and maxlength attributes. maxlength specifies the maximum length (in characters) of an input field for "text" or "password" types, size specifies the width of an input field.

提交回复
热议问题