English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML-Referenzhandbuch

HTML-Tag-Übersicht

HTML ol start attribute

Specify the starting value of the first list item in the ordered list.

 HTML <ol> Tag

Online Example

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 ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

All mainstream browsers support the start attribute.

Definition and Usage

Specify the starting value of the first list item in the ordered list.

HTML 4.01 and HTML5differences between

In HTML5 In the grammar, the use of the start attribute of the <ol> element is no longer opposed.

Syntax

<ol start="number">

Attribute Value

ValueDescription
numberSpecify the starting value of the first list item in the ordered list.
 HTML <ol> Tag