目录

CSS height 属性


示例

设置两个 <div> 元素的高度:

div.a {
  height: auto;
  border: 1px solid black;
}

div.b {
  height: 50px;
  border: 1px solid black;
}
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

这个height属性设置元素的高度。

元素的高度不包括内边距、边框或边距!

如果height: auto;元素将自动调整其高度以使其内容正确显示。

如果height设置为数值(如像素、(r)em、百分比),那么如果内容不适合指定的高度,它将溢出。容器如何处理溢出的内容由溢出属性。

笔记:这个最小高度最大高度属性覆盖 height属性。

展示演示❯

默认值: 汽车
遗传:
可动画: 是的。阅读可动画的尝试一下
版本: CSS1
JavaScript 语法: 对象.style.height="500px"尝试一下

浏览器支持

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

Property
height 1.0 4.0 1.0 1.0 7.0


CSS 语法

height: auto| length|initial|inherit;

属性值

Value Description Demo
auto The browser calculates the height. This is default Demo ❯
length Defines the height in px, cm, etc. Read about length units Demo ❯
% Defines the 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

更多示例

示例

将元素的高度设置为父元素高度的 50%:

#parent {
  height: 100px;
}

#child {
  height: 50%;
}
亲自试一试 »

相关页面

CSS教程:CSS 高度和宽度

CSS教程:CSS 盒子模型

CSS 参考:宽度属性

HTML DOM 参考:高度属性