content-counters-001.xht (1170B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: content: counters(c, ".", none)</title> 5 <link rel="author" title="L. David Baron" href="https://dbaron.org/"/> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#counter"/> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#counter-styles"/> 9 <style type="text/css"> 10 11 body { white-space: nowrap; } 12 13 14 body, #test { counter-reset: c; } 15 p, #test span { counter-increment: c; } 16 #test span:before { content: counters(c, ".", none) "z"; } 17 18 </style> 19 </head> 20 <body> 21 22 <p>The following two lines should look <em>approximately</em> the same:</p> 23 24 <div id="test"> 25 <span></span> 26 <span></span> 27 <span></span> 28 <span></span> 29 <span></span> 30 <span></span> 31 <span></span> 32 <span></span> 33 <span></span> 34 <span></span> 35 <span></span> 36 <span></span> 37 </div> 38 39 <div> 40 .z 41 .z 42 .z 43 .z 44 .z 45 .z 46 .z 47 .z 48 .z 49 .z 50 .z 51 .z 52 </div> 53 54 </body> 55 </html>