wpt / css / CSS2 / box-display / block-in-inline-large-margin-bottom.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/CSS2/box-display/block-in-inline-large-margin-bottom.html

<!DOCTYPE html>
<title>CSS Test: block-in-inline with large margin-bottom propagates correctly to next sibling</title>
<link rel="help" href="https://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level">
<link rel="help" href="https://www.w3.org/TR/CSS21/box.html#collapsing-margins">
<link rel="match" href="block-in-inline-large-margin-bottom-ref.html">
<meta name="assert" content="A block-in-inline with a large margin-bottom positions the next sibling at exactly that distance below.">
<style>
.container { width: 100px; }
.first { width: 100px; height: 10px; margin-bottom: 200px; background: blue; }
.second { width: 100px; height: 10px; background: green; }
</style>
<p>Blue rectangle, 200px gap, then green rectangle.</p>
<div class="container">
    <span><div class="first"></div></span>
    <span><div class="second"></div></span>
</div>

/css/CSS2/box-display/block-in-inline-large-margin-bottom-ref.html

<!DOCTYPE html>
<title>CSS Reference</title>
<style>
.container { width: 100px; }
.first { width: 100px; height: 10px; margin-bottom: 200px; background: blue; }
.second { width: 100px; height: 10px; background: green; }
</style>
<p>Blue rectangle, 200px gap, then green rectangle.</p>
<div class="container">
    <div class="first"></div>
    <div class="second"></div>
</div>