tenfourfox/layout/reftests/margin-collapsing/block-no-content-8-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

31 lines
431 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.separator {
height: 20px;
background-color: green;
}
#spacer1 {
height: 60px;
}
#min-height {
height: 20px;
background-color: blue;
}
#spacer2 {
height: 40px;
}
</style>
</head>
<body>
<div class="separator"></div>
<div id="spacer1"></div>
<div id="min-height">
<div id="zero-height"></div>
</div>
<div id="spacer2"></div>
<div class="separator"></div>
</body>
</html>