The height
CSS descriptor is a shorthand descriptor for setting both min-height
and max-height
of the viewport. By providing one viewport length value will set both, the minimum height and the maximum height, to the value provided.
If two viewport values are provided, the first value will set the minimum height and the second value will set the maximum height.
/* One value */ height: auto; height: 320px; height: 15em; /* Two values */ height: 320px 200px;
auto
<length>
<percentage>
Related at-rule | @viewport |
---|---|
Initial value | as each of the properties of the shorthand:
|
Percentages | as each of the properties of the shorthand:
|
Computed value | as each of the properties of the shorthand:
|
<viewport-length>{1,2}where
<viewport-length> = auto | <length-percentage>where
<length-percentage> = <length> | <percentage>
@viewport { height: 500px; }
Specification | Status | Comment |
---|---|---|
CSS Device Adaptation The definition of '"height" descriptor' in that specification. | Working Draft | Initial definition |
Desktop | ||||||
---|---|---|---|---|---|---|
height descriptor |
29 — 84 | 12
|
No | 10
|
16
|
No |
Mobile | ||||||
---|---|---|---|---|---|---|
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/height