The max-height
CSS descriptor specifies the maximum 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 maximum height constraint.
Related at-rule | @viewport |
---|---|
Initial value | auto |
Percentages | refer to the height of the initial viewport |
Media | visual, continuous |
Computed value | if specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, auto
|
Canonical order | the unique non-ambiguous order defined by the formal grammar |
/* Keyword value */ max-height: auto; /* <length> values */ max-height: 400px; max-height: 50em; max-height: 20cm; /* <percentage> value */ max-height: 75%;
auto
<length>
<percentage>
<viewport-length>where
<viewport-length> = auto | <length-percentage>where
<length-percentage> = <length> | <percentage>
@viewport { max-height: 600px; }
Specification | Status | Comment |
---|---|---|
CSS Device Adaptation The definition of '"max-height" descriptor' in that specification. | Working Draft | Initial definition |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 29 (behind a flag) | No support | 10 -ms | 11.10 Removed in 15 Reintroduced behind a flag in 16 | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 4.4 | 29 | No support | 10-ms | 11.10 Removed in 15 Reintroduced behind a flag in 16 | No support |
© 2005–2017 Mozilla Developer Network 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/max-height