summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-block-horizontal-2.html
blob: 8c5be5f701254d24d21151b9b64b779e0d1e2913 (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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
 font-family: sans-serif;
}
#ib1 {
 display: inline-block;
 margin-right: 10px;
}
#ib2 {
 display: inline-block;
 margin-left: 10px;
 margin-right: 20px;
}
#ib3 {
 display: inline-block;
 margin-left: 40px;
}
</style>
</head>
<body>
<div><span id="ib1">Hello<span id="ib2">my</span></span><span id="ib3">Kitty</span></div>
</body>
</html>