tor-browser

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

1127488-align-default-vertical-lr-rtl.html (770B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4   <meta charset="UTF-8">
      5   <title>CSS Writing Modes</title>
      6   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
      7   <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layout" title="7.1 Principles of Layout in Vertical Writing Modes">
      8  <style type="text/css">
      9  body {
     10    margin: 0;
     11  }
     12  div.outer {
     13    background: red url("left-bottom-300x300.png");
     14    height: 300px;
     15    width: 300px;
     16    writing-mode: vertical-lr;
     17    direction: rtl;
     18  }
     19  div.inner {
     20    display: inline-block;
     21    background-color: green;
     22    height: 100px;
     23    width: 100px;
     24  }
     25  </style>
     26 </head>
     27 <body>
     28  <div class="outer"><div class="inner"></div></div>
     29 </body>
     30 </html>