tor-browser

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

div-max-content-block-size.tentative.html (445B)


      1 <!DOCTYPE HTML>
      2 <title> Ensure block size is same as height of inner div </title>
      3 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973">
      4 <link rel="match" href="div-block-size-ref.html">
      5 <style>
      6  #outer {
      7    inset: 0;
      8    background-color: black;
      9    position: absolute;
     10    block-size: max-content;
     11    inline-size: 100px;
     12    border: 5px solid red;
     13  }
     14 </style>
     15 <div id="outer"><div style="block-size: 200px;"></div></div>