tenfourfox/layout/reftests/margin-collapsing/block-min-height-last-child-9c.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

28 lines
397 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#parent {
min-height: 100px;
margin-bottom: -20px;
background-color: lightgreen;
}
#last-child {
height: 110px;
margin-bottom: -20px;
background-color: green;
}
#separator {
height: 20px;
background-color: blue;
}
</style>
</head>
<body>
<div id="parent">
<div id="last-child"></div>
</div>
<div id="separator"></div>
</body>
</html>