Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/box-display/block-in-inline-large-margin-bottom.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Test: block-in-inline with large margin-bottom propagates correctly to next sibling</title>
<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>