summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/block-sibling-2-ref2.html
blob: 3b32ed57b4be4fa7bfb035e00790b56be160e0ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#red {
 height: 20px;
 background-color: red;
}
#green {
 height: 20px;
 background-color: green;
}
#blue {
 height: 20px;
 background-color: blue;
}
.margin {
 height: 20px;
}
</style>
</head>
<body>
<div id="red"></div>
<div class="margin"></div>
<div id="green"></div>
<div class="margin"></div>
<div id="blue"></div>
</body>
</html>