counter-list-item-2.html (677B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html><head> 7 <title>HTML LI element: explicit scope</title> 8 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org"> 9 <link rel="help" href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element"> 10 <link rel="help" href="https://drafts.csswg.org/css-lists/#list-item-counter"> 11 <link rel="match" href="counter-list-item-2-ref.html"> 12 <style> 13 li::before { content: counters(list-item,'.'); } 14 </style> 15 </head> 16 <body> 17 <ol> 18 <li></li> 19 <li></li> 20 <ol><li></li></ol> 21 <li></li> 22 </ol> 23 </body> 24 </html>