HTML . . .

HTML ol start property HTML and ol> tags

The start property allows you to customize the number of starting sequences for an ordered list of HTML, see the following example:

An ordered list starting with "50":

<ol start="50">
<li>咖啡</li>
<li>茶</li>
<li>牛奶</li>
</ol>

Try it out . . .

Browser support

HTML ol start property HTML ol start property HTML ol start property HTML ol start property HTML ol start property

The start property is supported by all major browsers.


Definitions and usages

The start property specifies the start value of the first list item in an ordered list.

Note: Currently, there is still no CSS alternative to the start property.


The difference between HTML 4.01 and HTML5

In HTML5, there is no longer opposition to the use of the start property of the element.


Grammar

<ol start="number">

The property value

value describe
number The start value of the first list item in the ordered list is specified.


HTML ol start property HTML and ol> tags