mirror of
https://github.com/servo/servo
synced 2026-05-14 10:56:44 +02:00
43 lines
675 B
CSS
43 lines
675 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: -moz-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: -moz-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: -moz-fit-content;
|
|
min-height: fit-content;
|
|
}
|