The min-height
CSS descriptor specifies the minimum height of the viewport of a document defined via the @viewport
at-rule.
The height will initially be set as close as possible to the initial viewport height considering the minimum height constraint.
/* Keyword value */ min-height: auto; /* <length> values */ min-height: 120px; min-height: 20em; min-height: 10cm; /* <percentage> value */ min-height: 25%;
auto
<length>
<percentage>
Related at-rule | @viewport |
---|---|
Initial value | auto |
Percentages | refer to the height of the initial viewport |
Computed value | if specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, auto
|
<viewport-length>where
<viewport-length> = auto | <length-percentage>where
<length-percentage> = <length> | <percentage>
@viewport { min-height: 200px; }
Specification | Status | Comment |
---|---|---|
CSS Device Adaptation The definition of '"min-height" descriptor' in that specification. | Working Draft | Initial definition |
Desktop | ||||||
---|---|---|---|---|---|---|
min-height descriptor |
29 — 84 | 12
|
No | 10
|
16
|
No |
Mobile | ||||||
---|---|---|---|---|---|---|
min-height descriptor |
4.4 — 37 | 29 — 84 | No | 16
|
No | 2.0 |
© 2005–2020 Mozilla and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/@viewport/min-height