Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Margin collapsing - horizontal margins do not collapse</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-08-14 -->
<link rel="match" href="margin-collapse-001-ref.xht" />
<meta name="flags" content="ahem" />
<meta name="assert" content="Horizontal margins of element do not collapse." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{
font: 20px/1em Ahem;
}
#test span
{
color: blue;
margin: 5em;
}
span
{
color: white;
}
.color1
{
color: orange;
}
</style>
</head>
<body>
<p>Test passes if the blue and orange stripes have the same horizontal spacing between them.</p>
<div id="test">
<span>XXXXX</span><span>XXXXX</span>
</div>
<div id="reference">
<span>XXXXX</span><span class="color1">XXXXX</span><span>XXXXXXXXXX</span><span class="color1">XXXXX</span>
</div>
</body>
</html>