tor-browser

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

container-queries-height.html (804B)


      1 <!doctype html>
      2 <link rel="help" href="https://drafts.csswg.org/css-viewport/">
      3 <link rel="match" href="reference/container-queries-height-ref.html">
      4 <style>
      5  .container {
      6    container-type: size;
      7    width: 100px;
      8    height: 100px;
      9  }
     10  .child {
     11    background-color: green;
     12    height: 50px;
     13    width: 50px;
     14    @container (height > 120px) {
     15      background-color: red;
     16    }
     17  }
     18 </style>
     19 <p>All boxes below should be green.</p>
     20 <div class="container">
     21  <div class="child"></div>
     22 </div>
     23 <div class="container" style="zoom: 2">
     24  <div class="child"></div>
     25 </div>
     26 <div class="container" style="zoom: 2">
     27  <div class="nested" style="zoom: 2">
     28    <div class="child"></div>
     29  </div>
     30 </div>
     31 <div class="outer" style="zoom: 2">
     32  <div class="container">
     33    <div class="child"></div>
     34  </div>
     35 </div>