English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Specify the starting value of the first list item in the ordered list.
From "10A numbered list starting with "
!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Basic Tutorial Website(oldtoolbag.com)</title> </head> <body> <ol start="10"> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> </body> </html>Test and see ‹/›
IEFirefoxOperaChromeSafari
All mainstream browsers support the start attribute.
Specify the starting value of the first list item in the ordered list.
In HTML5 In the grammar, the use of the start attribute of the <ol> element is no longer opposed.
<ol start="number">
Value | Description |
---|---|
number | Specify the starting value of the first list item in the ordered list. |