tor-browser

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

ua-style-sheet-margin-12-ref.html (536B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>Test for logical margins on ol elements in the UA style sheet</title>
      4 <style>
      5 .v-rl { writing-mode: vertical-rl; }
      6 .ltr, .rtl, .v-rl { border: 1px solid blue; }
      7 .ltr ol { margin: 1em 0; padding: 0 0 0 40px; }
      8 .rtl ol { margin: 1em 0; padding: 0 40px 0 0; }
      9 .v-rl ol { margin: 0 1em; padding: 40px 0 0 0; }
     10 </style>
     11 <div class=ltr>
     12  <ol>
     13    <li>Item</li>
     14  </ol>
     15 </div>
     16 <div class=rtl dir=rtl>
     17  <ol>
     18    <li>Item</li>
     19  </ol>
     20 </div>
     21 <div class=v-rl>
     22  <ol>
     23    <li>Item</li>
     24  </ol>
     25 </div>