summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-block-child-2-ref.html
blob: 7380c72d462f74a8c9b0ce16c2478bc4b9bd4d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#inline-block {
 display: inline-block;
 margin: 10px 0;
 padding: 10px 0;
 background-color: green;
}
#block {
 display: inline-block;
 background-color: lightgreen;
}
</style>
</head>
<body>
<div id="inline-block"><span id="block">Hello Kitty</span></div>
</body>
</html>