tor-browser

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

float-in-rtl-slr-2b.html (493B)


      1 <!DOCTYPE html>
      2 <html class="slr">
      3 <head>
      4 <style>
      5 .slr {
      6  writing-mode: sideways-lr;
      7 }
      8 </style>
      9 </head>
     10 <body>
     11  <div style="height:300px">
     12    <div style="height:100px;width:120px;background:rgba(0,255,0,0.8);float:left;"></div>
     13  </div>
     14  <div dir="rtl" style="height:200px">
     15    <div style="height:100px;width:150px;background:rgba(255,0,0,0.8);float:left;"></div>
     16  </div>
     17  <div style="background:silver">
     18 This text should appear ABOVE the green and red blocks.
     19  </div>
     20 </body>
     21 </html>