gecko/layout/reftests/margin-collapsing/block-overflow-2-ref2.html

33 lines
464 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.separator {
height: 20px;
background-color: green;
}
.margin {
height: 20px;
}
#overflow {
height: 200px;
background-color: blue;
overflow: hidden;
}
#overflow div {
height: 40px;
background-color: green;
}
</style>
</head>
<body>
<div class="separator"></div>
<div class="margin"></div>
<div id="overflow">
<div></div>
</div>
<div class="margin"></div>
<div class="separator"></div>
</body>
</html>