gecko/layout/reftests/margin-collapsing/fieldset-child-1-ref.html

33 lines
495 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#separator-top {
height: 20px;
background-color: green;
margin-bottom: 10px;
}
#fieldset {
background-color: blue;
padding: 20px;
}
#margin-child {
height: 40px;
background-color: green;
}
#separator-bottom {
height: 20px;
background-color: green;
margin-top: 10px;
}
</style>
</head>
<body>
<div id="separator-top"></div>
<div id="fieldset">
<div id="margin-child"></div>
</div>
<div id="separator-bottom"></div>
</body>
</html>