summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/column-sibling-1a.html
blob: f721c61dd74ca85ada15108de0a45dfa030f031d (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
28
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#block1, #block2 {
 height: 20px;
 background-color: orange;
}
#block1 {
 margin-bottom: 10px;
}
#multi-column {
 column-count: 1;
 height: 20px;
 margin: 20px 0;
 background-color: blue;
}
#block2 {
 margin-top: 10px;
}
</style>
</head>
<body>
<div id="block1"></div>
<div id="multi-column"></div>
<div id="block2"></div>
</body>
</html>