目录

style minHeight 属性

示例

设置 <div> 元素的最小高度:

document.getElementById("myDIV").style.minHeight = "100px";
亲自试一试 »

描述

minHeight 属性设置或返回元素的最小高度。

minHeight 属性仅对块级元素或具有绝对或固定位置的元素有效。

提示:要设置或返回元素的最大高度,请使用最大高度属性。


浏览器支持

Property
minHeight Yes Yes Yes Yes Yes

语法

返回 minHeight 属性:

object.style.minHeight

设置 minHeight 属性:

object.style.minHeight = "length|%|initial|inherit"

属性值

Value Description
length Defines the minimum height in length units. Default is 0
% Defines the minimum height in % of the parent element
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 0
返回值: 一个字符串,表示元素的最小高度
CSS版本 CSS2

更多示例

示例

返回 <div> 元素的最小高度:

alert(document.getElementById("myDiv").style.minHeight);
亲自试一试 »

相关页面

CSS教程:CSS尺寸

CSS 参考:最小高度属性