max-height
试一试
max-height
覆盖 height
,但是 min-height
覆盖 max-height
。
语法
css
/* <length> value */
max-height: 3.5em;
max-height: anchor-size(height);
max-height: calc(anchor-size(--myAnchor self-block, 250px) + 2em);
/* <percentage> value */
max-height: 75%;
/* Keyword values */
max-height: none;
max-height: max-content;
max-height: min-content;
max-height: fit-content;
max-height: fit-content(20em);
max-height: stretch;
/* Global values */
max-height: inherit;
max-height: initial;
max-height: revert;
max-height: revert-layer;
max-height: unset;
Values
<length>
-
将
max-height
定义为绝对值。 <percentage>
-
将
max-height
定义为包含块高度的百分比。 none
-
对盒子大小没有限制。
max-content
-
固有首选
max-height
。 min-content
-
固有最小
max-height
。 fit-content
-
使用可用空间,但不能超过 max-content,即
min(max-content, max(min-content, stretch))
。 fit-content(
<length-percentage>
)-
使用
fit-content
公式,将可用空间替换为指定参数,即min(max-content, max(min-content, argument))
。 stretch
-
限制元素的 边距盒 的最大高度为其 包含块 的高度。它试图使边距盒填满包含块中的可用空间,因此在某种程度上类似于
100%
的行为,但将结果大小应用于边距盒,而不是由 box-sizing 确定的盒子。注意:要检查浏览器为
stretch
值使用的别名及其实现状态,请参阅 浏览器兼容性 部分。
无障碍
确保使用 max-height
设置的元素在页面缩放以增加文本大小时不会被截断和/或不会遮挡其他内容。
正式定义
正式语法
max-height =
none |
<length-percentage [0,∞]> |
min-content |
max-content |
fit-content( <length-percentage [0,∞]> ) |
<calc-size()>
<length-percentage> =
<length> |
<percentage>
<calc-size()> =
calc-size( <calc-size-basis> , <calc-sum> )
<calc-size-basis> =
<intrinsic-size-keyword> |
<calc-size()> |
any |
<calc-sum>
<calc-sum> =
<calc-product> [ [ '+' | '-' ] <calc-product> ]*
<calc-product> =
<calc-value> [ [ '*' | '/' ] <calc-value> ]*
<calc-value> =
<number> |
<dimension> |
<percentage> |
<calc-keyword> |
( <calc-sum> )
<calc-keyword> =
e |
pi |
infinity |
-infinity |
NaN
示例
使用百分比和关键字值设置 max-height
css
table {
max-height: 75%;
}
form {
max-height: none;
}
规范
规范 |
---|
CSS 盒子大小模块级别 4 # width-height-keywords |
CSS 盒子大小模块级别 4 # sizing-values |
浏览器兼容性
BCD 表格仅在浏览器中加载