summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/support/height-keyword-classes.css
blob: d26f564442665f837b3dfe630d08c04456faf96a (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
34
35
36
37
38
39
/* In the current spec for heights, min-content, max-content and fit-content are
 * equivalent.
 */

.min-content {
    height: min-content;
}

.max-content {
    height: max-content;
}

.fit-content {
    height: fit-content;
}

.max-height-min-content {
    max-height: min-content;
}

.max-height-max-content {
    max-height: max-content;
}

.max-height-fit-content {
    max-height: fit-content;
}

.min-height-min-content {
    min-height: min-content;
}

.min-height-max-content {
    min-height: max-content;
}

.min-height-fit-content {
    min-height: fit-content;
}