gecko/layout/reftests/margin-collapsing/block-no-content-3.html

32 lines
387 B
HTML
Raw Normal View History

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