tor-browser

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

block-in-inline-align-001-ref.html (503B)


      1 <!DOCTYPE html>
      2 <style>
      3 section {
      4  width: 20ch;
      5 }
      6 .w10 {
      7  width: 10ch;
      8  background: orange;
      9 }
     10 .left {
     11  text-align: left;
     12 }
     13 .right {
     14  text-align: right;
     15 }
     16 </style>
     17 <body>
     18  <section class="right">
     19    <span>
     20      <div>123456789</div>
     21      <div class="w10">123456789</div>
     22      <div>123456789</div>
     23    </span>
     24  </section>
     25 
     26  <section dir="rtl" class="left">
     27    <span>
     28      <div>123456789</div>
     29      <div class="w10">123456789</div>
     30      <div>123456789</div>
     31    </span>
     32  </section>
     33 </body>