summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-block-sibling-1-ref.html
blob: 1e1026bb85a3059cb5a7467222d58031aad53d43 (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
<!DOCTYPE html>
<html>
<head>
<!-- specifying all heights in em units so that large font sizes
     don't disrupt relationships; everything will scale together -->
<style type="text/css">
#parent {
 width: 200px;
 background-color: lightgreen;
}
#inline-block1, #inline-block2 {
 height: 2em;
 background-color: green;
}
#margin {
 height: 2em;
}
</style>
</head>
<body>
<div id="parent">
 <div id="inline-block1"></div>
 <div id="margin"></div>
 <div id="inline-block2"></div>
</div>
</body>
</html>