summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/inline-table-horizontal-1.html
blob: 0496c962ae362e26560f31039d22556dd16911e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
 font-family: sans-serif;
}
#it1 {
 display: inline-table;
 margin-right: 20px;
}
#it2 {
 display: inline-table;
 margin-left: 10px;
}
</style>
</head>
<body>
<div><span id="it1">Hello</span><span id="it2">Kitty</span></div>
</body>
</html>