tor-browser

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

implicit-nesting-ref.html (636B)


      1 <!DOCTYPE html>
      2 <title>Implicit nesting</title>
      3 <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
      4 <link rel="help" href="https://drafts.csswg.org/css-nesting-1/">
      5 <style>
      6  .test {
      7    background-color: green;
      8    width: 30px;
      9    height: 30px;
     10    display: grid;
     11  }
     12 
     13  body * + * {
     14    margin-top: 8px;
     15  }
     16 </style>
     17 <body>
     18  <p>Tests pass if <strong>block is green</strong></p>
     19  <div class="test"></div>
     20  <div class="test"></div>
     21  <div class="test"></div>
     22  <div class="test"></div>
     23  <div class="test"></div>
     24  <div class="test"></div>
     25  <div class="test"></div>
     26  <div class="test"></div>
     27 </body>