HTML <ol> start Attribute
Example
<ol start="3">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
Meaning
The start attribute specifies the start value for numbering the individual list items.
<list> elements might be Roman numerals, such as XXXI, or letters, the value of start is always represented as a number. To start numbering elements from the letter B, use <ol type="A" start="2">.
Standard Syntax
<ol start="number">
Advertisement
Attribute Values
| Value | Description |
|---|---|
| number | Specifies the starting number of the first item in an ordered list. |
Live Demonstration:
- One
- Two
- Three
Choose a list style type:
disc
circle
square
decimal
decimal-leading-zero
lower-roman
upper-roman
lower-greek
lower-alpha
lower-latin
upper-alpha
upper-latin
armenian
georgian
none
inherit
Enter list start:
CSS:
<One>
<Two>
<Three>
<ol>