tor-browser

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

gap-001-rtl-ref.html (636B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Flexbox Test: gap - horizontal with RTL writing mode</title>
      4 <link rel="author" title="Adam Argyle" href="mailto:argyle@google.com">
      5 <style>
      6  body {
      7    direction: rtl;
      8  }
      9 
     10  section {
     11    background-color: green;
     12    block-size: 100px;
     13    display: flex;
     14  }
     15  section > div{
     16    background-color: grey;
     17    flex: 1 1 auto;
     18  }
     19  section > div:not(:first-child) {
     20    margin-inline-start: 20px;
     21  }
     22 </style>
     23 <body>
     24  <p>Test passes if there is <strong>a green vertical line between boxes</strong>.</p>
     25  <section>
     26    <div></div>
     27    <div></div>
     28    <div></div>
     29  </section>
     30 </body>