tor-browser

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

margin-collapse-through-zero-height-block.html (748B)


      1 <!DOCTYPE html>
      2 <title>Collapse bottom margin from previous sibling through zero height block to next sibling</title>
      3 <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/CSS22/box.html#collapsing-margins" title="8.3.1 Collapsing margins">
      5 <link rel="match" href="../../reference/ref-filled-green-200px-square.html">
      6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      7 <div style="overflow:hidden; width:200px; height:400px; background:green;">
      8  <div style="margin-bottom:200px;"></div>
      9  <div style="height:0;"></div>
     10  <div style="height:200px; margin-top:100px; background:white;"></div>
     11  <div style="height:200px; background:red;"></div>
     12 </div>