tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

li-list-item-counter-001-ref.html (747B)


      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  <meta charset="utf-8">
      8  <title>Reference:_CSS Lists: 'counter-increment:list-item' on LI</title>
      9  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
     10  <style>
     11 html,body {
     12  color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
     13 }
     14 body { margin-left: 10em; }
     15  </style>
     16 </head>
     17 <body>
     18 
     19 <ol><li value=0>a<li value=4>b<li value=4>c</ol>
     20 <ol><li value=0>a<li value=4>b<li value=4>c</ol>
     21 <ol><li value=-1>a<li value=4>b<li value=3>c</ol>
     22 <ol><li value=0>a<li value=4>b<li value=4>c</ol>
     23 <ol><li value=2>a<li value=4>b<li value=6>c</ol>
     24 
     25 </body>
     26 </html>