Mypal/layout/reftests/margin-collapsing/block-no-content-4b.html

30 lines
408 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#parent {
background-color: green;
}
#first-child {
height: 20px;
}
#last-child {
margin-top: 60px;
margin-bottom: -20px;
}
#separator {
height: 20px;
margin-top: 10px;
background-color: green;
}
</style>
</head>
<body>
<div id="parent">
<div id="first-child"></div>
<div id="last-child"></div>
</div>
<div id="separator"></div>
</body>
</html>