Discussion on the numerical limit of the ol element in the html document

Discussion on the numerical limit of the ol element in the html document

Generally speaking, it is unlikely that you will encounter extremely large <ol> lists in HTML documents, and this article is purely a technical discussion.

I happened to come across this problem and tested it.

The measured limit is [-2147483648, 2147483647], which is [- 2^31 ~ 2^31 - 1]

There are slight differences between browsers.

In IE10 and Firefox, after the serial number reaches the maximum positive value 2147483647, the serial numbers of subsequent list items are all the same as the maximum positive value 2147483647 and remain unchanged.

2147483645.
2147483646.b
2147483647.c
2147483647.d
2147483647.e
2147483647.f

On Chrome, after the serial number reaches the maximum positive value of 2147483647, the next serial number will become the maximum negative value -2147483648, and the subsequent serial numbers will increase on this basis by -2147483647, -2147483646,...

2147483645.
2147483646.b
2147483647.c
-2147483648.d
-2147483647.e
-2147483646.f

<<:  About the startup error caused by incompatibility between vmware workstations and device/credential

>>:  How to use CSS style to vertically center the font in the table

Recommend

Detailed explanation of how to use CMD command to operate MySql database

First: Start and stop the mysql service net stop ...

Summary of learning HTML tags and basic elements

1. Elements and tags in HTML <br />An eleme...

MySQL uses binlog logs to implement data recovery

MySQL binlog is a very important log in MySQL log...

Tips for adding favicon to a website: a small icon in front of the URL

The so-called favicon, which is the abbreviation o...

MySQL transaction analysis

Transaction A transaction is a basic unit of busi...

Is it true that the simpler the web design style, the better?

Original address: http://www.webdesignfromscratch...

CSS implements 0.5px lines to solve mobile compatibility issues (recommended)

【content】: 1. Use background-image gradient style...

PNG Alpha Transparency in IE6 (Complete Collection)

Many people say that IE6 does not support PNG tra...

How to change the MySQL database file directory in Ubuntu

Preface The company's Ubuntu server places th...

Web interview Vue custom components and calling methods

Import: Due to project requirements, we will enca...

Comprehensive explanation of CocosCreator hot update

Table of contents Preface What is Hot Change Coco...

Use a few interview questions to look at the JavaScript execution mechanism

Table of contents Previous words Synchronous and ...

How to generate Vue user interface by dragging and dropping

Table of contents Preface 1. Technical Principle ...