tor-browser

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

gap-002-ltr-ref.html (607B)


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