1<ol type="1">
2 <li>Item 1</li>
3 <li>Item 2</li>
4 <li>Item 3</li>
5</ol>
6
7<ol type="A">
8 <li>Item 1</li>
9 <li>Item 2</li>
10 <li>Item 3</li>
11</ol>
12
13<ol type="a">
14 <li>Item 1</li>
15 <li>Item 2</li>
16 <li>Item 3</li>
17</ol>
18
19<ol type="I">
20 <li>Item 1</li>
21 <li>Item 2</li>
22 <li>Item 3</li>
23</ol>
24
25<ol type="i">
26 <li>Item 1</li>
27 <li>Item 2</li>
28 <li>Item 3</li>
29</ol>
1/* Liste partielle des mots-clés utilisables */
2list-style-type: disc;
3list-style-type: circle;
4list-style-type: square;
5list-style-type: decimal;
6list-style-type: georgian;
7list-style-type: cjk-ideographic;
8list-style-type: kannada;
9
10/* Une chaîne de caractères */
11/* Type <string> */
12list-style-type: '-';
13
14/* Un identifiant correspondant à */
15/* une règle @counter-style */
16list-style-type: custom-counter-style;
17
18/* Valeur avec un mot-clé */
19list-style-type: none;
20
21/* Valeurs globales */
22list-style-type: inherit;
23list-style-type: initial;
24list-style-type: unset;
25