English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Specifies the starting value of the first list item in an ordered list.
From "10An ordered list starting with "
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Basic Tutorial Website(oldtoolbag.com)</title>/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.
Specifies the starting value of the first list item in an ordered list.
In HTML5 No longer opposing the use of the start attribute of the <ol> element in the syntax.
<ol start="number">
Value | Description |
---|---|
number | Specifies the starting value of the first list item in an ordered list. |