mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
51 lines
No EOL
1.7 KiB
HTML
51 lines
No EOL
1.7 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>CSS Test: Margin collapsing - floated elements do not collapse margins with children</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="help" href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins" />
|
|
<link rel="match" href="margin-collapse-002-ref.xht" />
|
|
|
|
<meta name="flags" content="ahem image" />
|
|
<meta name="assert" content="In-flow children of a floated element do not collapse margins." />
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
font: 20px/1em Ahem;
|
|
width: 5em;
|
|
}
|
|
#div1
|
|
{
|
|
background: url('support/margin-collapse-2em-space.png');
|
|
min-height: 4em;
|
|
}
|
|
div div
|
|
{
|
|
background: green;
|
|
height: 1em;
|
|
}
|
|
#div2, #div4
|
|
{
|
|
float: left;
|
|
}
|
|
#div2, #div3
|
|
{
|
|
margin-bottom: 1em;
|
|
}
|
|
#div4
|
|
{
|
|
margin-top: 1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is <strong>no red</strong>.</p>
|
|
<div id="div1">
|
|
<div id="div2">
|
|
<div id="div3"></div>
|
|
</div>
|
|
<div id="div4"></div>
|
|
</div>
|
|
</body>
|
|
</html> |