about summary refs log tree commit diff stats
path: root/test/layout/flex-item-margin-collapsing.html
blob: 56c7260d418e9c52c9dca7898a992697a535ddeb (plain) (blame)
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
<div style="display: flex; background: red; width: 5ch">
<div style="margin-bottom: 2em; background: blue">
<div style="margin-bottom: 1em; background: green">
test
</div>
</div>
</div>
<div style="display: flex; background: red; width: 5ch">
<div style="margin-bottom: 1em; background: blue">
<div style="margin-bottom: 2em; background: green">
test2
</div>
</div>
</div>
<div style="display: flex; flex-direction: column; background: red; width: 5ch">
<div style="margin-bottom: 2em; background: blue">
<div style="margin-bottom: 1em; background: green">
test3
</div>
</div>
</div>
<div style="display: flex; flex-direction: column; background: red; width: 5ch">
<div style="margin-bottom: 1em; background: blue">
<div style="margin-bottom: 2em; background: green">
test3
</div>
</div>
</div>