clear-with-top-margin-after-cleared-empty-block.html (893B)
1 <!DOCTYPE html> 2 <title>Clearance on empty block followed by block with large margin and 'clear'</title> 3 <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org"> 4 <link rel="help" href="https://www.w3.org/TR/CSS22/visuren.html#flow-control" title="9.5.2 Controlling flow next to floats: the 'clear' property"> 5 <link rel="help" href="https://www.w3.org/TR/CSS22/box.html#collapsing-margins" title="8.3.1 Collapsing margins"> 6 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html"> 7 <p>Test passes if there is a filled green square.</p> 8 <div style="position:relative; width:100px; border-top:1px solid white; top:-21px; z-index:-1; background:green;"> 9 <div style="float:left; width:100px; height:20px; background:white;"></div> 10 <div style="clear:both;"></div> 11 <div style="clear:both; margin-top:100px; height:20px; background:white;"></div> 12 </div>