calc-in-counter-001-ref.xhtml (605B)
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: counter-* properties with a calc() expression</title> 5 <link rel="author" title="Ondřej Žára" href="https://ondras.zarovi.cz/"/> 6 <style type="text/css"> 7 body { 8 white-space: nowrap; 9 } 10 </style> 11 </head> 12 <body> 13 14 <p>The following two lines should be the same:</p> 15 16 <div id="test"> 17 <span id="a">8</span> 18 <span id="b">10</span> 19 </div> 20 21 <div id="reference"> 22 <span>8</span> 23 <span>10</span> 24 </div> 25 26 </body> 27 </html>