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-vertical-margins-on-span-ignored.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Test: vertical margins on the span ancestor are ignored</title>
<link rel="match" href="block-in-inline-vertical-margins-on-span-ignored-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<meta name="assert" content="Vertical margins specified on the inline span containing a block-in-inline are ignored and do not shift the block.">
<style>
.container { width: 100px; font: 20px/1 Ahem; }
.span { margin-top: 50px; margin-bottom: 50px; }
.inner { width: 100px; height: 20px; background: green; }
.sibling { width: 100px; height: 20px; background: green; }
</style>
<p>Two adjacent green squares with no gap.</p>
<div class="container">
<span class="span"><div class="inner"></div></span>
<div class="sibling"></div>
</div>