--- title: min-height slug: Web/CSS/min-height translation_of: Web/CSS/min-height ---
{{ CSSRef() }}
A propriedade min-height
do CSS é usado para definir a altura mínima de um determinado elemento. Ele impede que o valor usado da propriedade {{ Cssxref("height") }} se torne menor que o valor especificado para min-height.
O valor de {{ Cssxref("min-height") }} substitui os dois {{ Cssxref("max-height") }} e {{ Cssxref("height") }}.
{{cssinfo}}
sintaxe forma: {{csssyntax("min-height")}}
min-height: 3.5em min-height: 10% min-height: max-content min-height: min-content min-height: fit-content min-height: fill-available min-height: inherit
<length>
<percentage>
max-content
{{ experimental_inline() }}min-content
{{ experimental_inline() }}fill-available
{{ experimental_inline() }}available
.fit-content
{{ experimental_inline() }}min-content.
CSS3 Sizing defines a more complex algorithm, but no browser implements it, even in an experimental way.table { min-height: 75%; } form { min-height: 0; }
Especificação | Status | Comentário |
---|---|---|
{{ SpecName('CSS3 Sizing', '#width-height-keywords', 'min-height') }} | {{ Spec2('CSS3 Sizing') }} | Adds the max-content , min-content , fit-content , and fill-available keywords.Both CSS3 Box and CSS3 Writing Modes drafts defined at some point these keywords. These drafts are superseded by this spec. |
{{ SpecName('CSS3 Flexbox', '#min-auto', 'min-height') }} | {{ Spec2('CSS3 Flexbox') }} | An earlier revision of the spec added the auto keyword and used it as the initial value. The CSSWG subsequently resolved to revert this change, however. As of March 29, 2013, the latest Editor's Draft doesn't modify the min-width property anymore (i.e. it no longer introduces the auto value). |
{{ SpecName('CSS3 Transitions', '#animatable-css', 'min-height') }} | {{ Spec2('CSS3 Transitions') }} | Defines min-height as animatable. |
{{ SpecName('CSS2.1', 'visudet.html#min-max-heights', 'min-height') }} | {{ Spec2('CSS2.1') }} | Initial definition. |
{{ CompatibilityTable() }}
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 1.0 | {{ CompatGeckoDesktop("1.9") }} | 7.0 | 4.0 | 1.0 2.0.2 (416) for positioned elements |
applies to <table> [1] |
{{ CompatNo() }} | {{ CompatVersionUnknown() }} | {{ CompatNo() }} | {{ CompatVersionUnknown() }} | {{ CompatNo() }} |
max-content , min-content , fit-content , and fill- available {{ experimental_inline() }} |
{{ CompatNo() }} | {{ CompatNo() }} | {{ CompatNo() }} | {{ CompatNo() }} | {{ CompatNo() }} |
auto {{obsolete_inline(22)}} |
21.0 | {{ CompatGeckoDesktop("16.0") }} | {{ CompatNo() }} | 12.10 | {{ CompatNo() }} |
auto as initial value{{obsolete_inline(22)}} |
21.0 | {{ CompatGeckoDesktop("18.0") }} | {{ CompatNo() }} | 12.10 | {{ CompatNo() }} |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} |
[1] CSS 2.1 explicitly leaves the behavior of min-height
with {{ HTMLElement("table") }} undefined. Therefore any behavior is CSS2.1-compliant; newer CSS specifications may define this behavior, so Web developers shouldn't rely on a specific one now.
[2] Due to bug ({{bug("307866")}}) Firefox doesn't hande min-height
on elements with display: table-*
.