tor-browser

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

div-min-content-auto-margin-bottom.tentative.html (489B)


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