--- title: min-height slug: Web/CSS/min-height translation_of: Web/CSS/min-height ---
CSS 属性 min-height
能够设置元素的最小高度。这样能够防止 {{cssxref("height")}}
属性的应用值小于 min-height
的值。
当 min-height
大于 {{cssxref("max-height")}} 或 {{cssxref("height")}} 时,元素的高度会设置为 min-height
的值。
/* <长度> 数值 */ min-height: 3.5em; /* <百分比> 数值 */ min-height: 10%; /* 关键词 */ min-height: max-content; min-height: min-content; min-height: fit-content(20em); /* 全局数值 */ min-height: inherit; min-height: initial; min-height: unset;
min-height
为一个绝对数值。min-height
为一个相对于父容器高度的百分数。auto
min-height
值。none
max-content
min-height
.min-content
min-height
.fit-content({{cssxref("<length-percentage>")}})
fit-content
formula with the available space replaced by the specified argument, i.e. min(max-content, max(min-content, argument))
.{{cssinfo}}
{{csssyntax}}
table { min-height: 75%; } form { min-height: 0; }
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS4 Sizing', '#width-height-keywords', 'min-height')}} | {{Spec2('CSS4 Sizing')}} | |
{{SpecName('CSS3 Sizing', '#width-height-keywords', 'min-height')}} | {{Spec2('CSS3 Sizing')}} | Adds the max-content , min-content , fit-content keywords. |
{{SpecName('CSS2.1', 'visudet.html#min-max-heights', 'min-height')}} | {{Spec2('CSS2.1')}} | Initial definition. |
{{Compat("css.properties.min-height")}}