Mypal/layout/reftests/margin-collapsing/block-sibling-2-noref.html

27 lines
336 B
HTML

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