tor-browser

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

container-units-rule-cache.html (713B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-lengths">
      4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1832481">
      5 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      6 <link rel="author" href="https://mozilla.org" title="Mozilla">
      7 <link rel="match" href="container-units-rule-cache-ref.html">
      8 <style>
      9  .container {
     10    width: 100px;
     11    container-type: size;
     12  }
     13 
     14  .half {
     15    height: 50cqh;
     16    background-color: green;
     17  }
     18 </style>
     19 <div class="container" style="height: 100px">
     20  <div class="half"></div>
     21 </div>
     22 <div class="container" style="height: 200px">
     23  <div class="half"></div>
     24 </div>