tenfourfox/layout/reftests/margin-collapsing/block-last-child-2a.html

27 lines
353 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#parent {
height: 100px;
background-color: blue;
margin-bottom: 20px;
}
#child {
height: 95px;
background-color: green;
}
#separator {
height: 20px;
background-color: green;
}
</style>
</head>
<body>
<div id="parent">
<div id="child"></div>
</div>
<div id="separator"></div>
</body>
</html>