tor-browser

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

change-list-style-position-002-ref.html (374B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Lists: test the change of list-style-position</title>
      4 <style>
      5 div {
      6  display: list-item;
      7  margin-left: 40px;
      8  border: 5px solid;
      9 }
     10 div > div { list-style-type: decimal }
     11 div > div > div { list-style-type: lower-roman }
     12 .inside { list-style-position: inside }
     13 </style>
     14 <div><div><div class="inside">text</div></div></div>