Mypal/layout/reftests/margin-collapsing/block-fix-height-last-child-4-ref.html

26 lines
346 B
HTML
Raw Normal View History

2019-03-11 10:26:37 +00:00
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#parent {
height: 100px;
background-color: lightgreen;
}
#last-child {
height: 10px;
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>