summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-block-child-1.html
blob: 80e3c9c684ff374e24394ec863d63df67b44458d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#parent {
 display: inline-block;
 background-color: green;
}
#child {
 display: inline-block;
 height: 40px; width: 200px;
 margin: 20px 0;
 vertical-align: bottom;
 background-color: lightgreen;
}
</style>
</head>
<body>
<div id="parent">
 <div id="child"></div>
</div>
</body>
</html>