counter-list-item-2-ref.html (587B)
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 <style> 10 #a::before { content: "1"; } 11 #b::before { content: "2"; } 12 #c::before { content: "2.1"; } 13 #d::before { content: "2.2"; } 14 </style> 15 </head> 16 <body> 17 <ol> 18 <li value="1" id="a"></li> 19 <li value="2" id="b"></li> 20 <ol><li value="1" id="c"></li></ol> 21 <li value="2" id="d"></li> 22 </ol> 23 </body> 24 </html>