目录

CSS min-height 属性


示例

将 <p> 元素的最小高度设置为 200 像素:

p.ex1 {
  min-height: 200px;
}
亲自试一试 »

定义和用法

这个min-height属性定义元素的最小高度。

如果内容小于最小高度,则将应用最小高度。

如果内容大于最小高度, min-height属性没有影响。

笔记:这会阻止该值的高度属性变得小于min-height

展示演示❯

默认值: 0
遗传:
可动画: 是的,查看各个属性阅读可动画的尝试一下
版本: CSS2
JavaScript 语法: 对象.style.minHeight="400px"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
min-height 1.0 7.0 3.0 2.0.2 4.0


CSS 语法

min-height: length|initial|inherit;

属性值

Value Description Demo
length Default value is 0. Defines the minimum height in px, cm, etc. Read about length units Demo ❯
% Defines the minimum height in percent of the containing block Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 高度和宽度

CSS 参考:最大高度属性

HTML DOM 参考:minHeight 属性