tenfourfox/layout/reftests/margin-collapsing/block-zero-height-2a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

36 lines
419 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#a {
background-color: green;
}
#b {
height: 20px;
}
#c {
margin-top: 30px;
margin-bottom: 40px;
height: 0;
}
#d {
height: 10px; width: 100px;
background-color: red;
}
#e {
height: 20px;
background-color: green;
}
</style>
</head>
<body>
<div id="a">
<div id="b"></div>
<div id="c">
<div id="d"></div>
</div>
</div>
<div id="e"></div>
</body>
</html>