tor-browser

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

368622-1.html (302B)


      1 <!DOCTYPE html>
      2 <title>::before { display: inline-block; }</title>
      3 <style>
      4 ul li {
      5  list-style-type: none;
      6  counter-increment: item;
      7 }
      8 ul li::before {
      9  content: counter(item);
     10  display: inline-block;
     11  width: 3em;
     12 }
     13 ul {
     14  margin-left: 3em;
     15  padding-left: 0;
     16 }
     17 </style>
     18 <ul>
     19 <li>Foo
     20 <li>Bar
     21 </ul>