tor-browser

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

gap-001-rtl.html (938B)


      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 <link rel="help" href="https://www.w3.org/TR/css-grid-1/#gutters">
      6 <link rel="help" href="https://www.w3.org/TR/css-align-3/#column-row-gap">
      7 <link rel="help" href="https://www.w3.org/TR/css-align-3/#gap-legacy">
      8 <link rel="match" href="gap-001-rtl-ref.html">
      9 <meta name="assert" content="The 'gap' property enables putting space exclusively between items">
     10 <style>
     11  body {
     12    direction: rtl;
     13  }
     14 
     15  section {
     16    background-color: green;
     17    block-size: 100px;
     18    display: flex;
     19    gap: 20px;
     20  }
     21  section > div{
     22    background-color: grey;
     23    flex: 1 1 auto;
     24  }
     25 </style>
     26 <body>
     27  <p>Test passes if there is <strong>a green vertical line between boxes</strong>.</p>
     28  <section>
     29    <div></div>
     30    <div></div>
     31    <div></div>
     32  </section>
     33 </body>