The difference between Input's size and maxlength attributes

The difference between Input's size and maxlength attributes
I recently used the input size and maxlength attributes in a project. In the past, I just used them without paying attention to the difference between these two tags. I searched on Baidu today and got some understanding. Specially recorded here!

Copy code
The code is as follows:

<p>Name: <input type="text" name="fullname" maxlength="5" /></p>
<p>Name2: <input type="text" name="fullname" size="5" /></p>

maxlength="5", then only 5 characters can be entered in the input box<br/>
size="5" means that the input box only displays 5 visible characters, but you can enter 'infinite' characters

That is, the size attribute specifies the width of the input field (here, the Name2 text box only displays 5 characters).
Since the size attribute is a visual design attribute, we should use width in CSS instead.

CSS syntax: <input style="width:100px"/>

<<:  4 solutions to CSS browser compatibility issues

>>:  Detailed explanation of Vue project optimization and packaging

Recommend

Mysql timeline data to obtain the first three data of the same day

Create table data CREATE TABLE `praise_info` ( `i...

A brief discussion on the use of Web Storage API

Table of contents 1. Browser local storage techno...

Specific use of Linux gcc command

01. Command Overview The gcc command uses the C/C...

MySQL MyISAM default storage engine implementation principle

By default, the MyISAM table will generate three ...

Native js implementation of slider interval component

This article example shares the specific code of ...

How to implement Vue binding class and binding inline style

Table of contents Binding Class Binding inline st...

How to remove the header from the element table

Document hints using the show-header attribute sh...

Analysis of Facebook's Information Architecture

<br />Original: http://uicom.net/blog/?p=762...

MySQL series 9 MySQL query cache and index

Table of contents Tutorial Series 1. MySQL Archit...

Solution to uninstalling Python and yum in CentOs system

Background of the accident: A few days ago, due t...

How to fix abnormal startup of mysql5.7.21

A colleague reported that a MySQL instance could ...