tor-browser

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

mixed-declarations-rules.html (404B)


      1 <!DOCTYPE html>
      2 <title>Mixed declarations and rules</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-nesting/#nested-declarations-rule">
      4 
      5 <style>
      6 div {
      7  width: 100px;
      8  height: 100px;
      9  background-color: blue;
     10  @media all {
     11    background-color: red;
     12  }
     13  background-color: green;
     14 }
     15 </style>
     16 
     17 <body>
     18  <p>Tests pass if <strong>block is green</strong></p>
     19  <div class="test"></div>
     20 </body>