min-height
试一试
只要 min-height
大于 max-height
或 height
,元素的高度就会设置为 min-height
的值。
语法
css
/* <length> value */
min-height: 3.5em;
min-height: anchor-size(height);
min-height: anchor-size(--myAnchor block, 200px);
/* <percentage> value */
min-height: 10%;
/* Keyword values */
min-height: max-content;
min-height: min-content;
min-height: fit-content;
min-height: fit-content(20em);
min-height: stretch;
/* Global values */
min-height: inherit;
min-height: initial;
min-height: revert;
min-height: revert-layer;
min-height: unset;
值
<length>
-
将
min-height
定义为绝对值。 <percentage>
-
将
min-height
定义为包含块高度的百分比。 auto
-
浏览器将计算并为指定的元素选择
min-height
。 max-content
-
固有的首选
min-height
。 min-content
-
固有的最小
min-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
值使用的别名及其实现状态,请参阅 浏览器兼容性 部分。
正式定义
正式语法
min-height =
auto |
<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
示例
设置 min-height
css
table {
min-height: 75%;
}
form {
min-height: 0;
}
规范
规范 |
---|
CSS 盒子大小模块级别 3 # width-height-keywords |
CSS 盒子大小模块级别 4 # sizing-values |
浏览器兼容性
BCD 表格仅在浏览器中加载