mirror of
https://github.com/servo/servo
synced 2026-05-15 03:16:47 +02:00
40 lines
577 B
CSS
40 lines
577 B
CSS
/* 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;
|
|
}
|