summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-box/margin-trim/flex-column-inline-multiline-ref.html
blob: c4b36a91b7bfb0a4872a036626a50e0333317bfc (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
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>margin-trim: flex-column-inline-multiline</title>
<link rel="author" href="mailto:sammy.gill@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-box-4/#margin-trim-flex">
<meta name="assert" content="inline-start should be trimmed for all items on the first flex line and inline-end should be trimmed for all items on the last flex line">
<style>
flexbox {
    display: flex;
    width: min-content;
    height: 100px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px 30px;
}
item {
    display: block;
    background-color: green;
    width: 50px;
    height: 50px;
}
</style>
</head>
<body>
<flexbox>
<item></item>
<item></item>
<item></item>
<item></item>
</flexbox>
</body>
</html>