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
Create table data CREATE TABLE `praise_info` ( `i...
Table of contents 1. Browser local storage techno...
MySQL 8.0.19 supports locking the account after e...
01. Command Overview The gcc command uses the C/C...
By default, the MyISAM table will generate three ...
This article example shares the specific code of ...
1. Basic syntax structure of HTML submit and bott...
Copy code The code is as follows: <div content...
Table of contents Binding Class Binding inline st...
Document hints using the show-header attribute sh...
Install linux7.2 Internet access configuration on...
<br />Original: http://uicom.net/blog/?p=762...
Table of contents Tutorial Series 1. MySQL Archit...
Background of the accident: A few days ago, due t...
A colleague reported that a MySQL instance could ...