HTML DOM样式的height属性类似于CSS Height属性,但是它用于动态设置或获取元素的高度。
用法:
- 设置height属性:
object.style.height = auto|length|%|initial|inherit;
- 要获取height属性值:
object.style.height
属性值:
值 | 描述 |
---|---|
auto | 默认值 |
length | 以长度单位定义高度 |
% | 与父元素相比,此百分比定义了高度。 |
initial | 设置其默认值 |
inherit | 从对象继承属性 |
返回值:给出元素高度的字符串。
示例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML | DOM Style height Property
</title>
<style>
p {
height:auto;
color:white;
font-size:50px;
background-color:green;
}
</style>
</head>
<body>
<br>
<button onclick="Play()">
Click to change height
</button>
<br />
<br />
<script>
function Play() {
document.getElementById(
"block").style.height = "200px"
}
</script>
<p id="block">
Geeks For Geeks
</p>
</body>
</html>
输出
- 之前:
HTML DOM之前的高度
- 后:
之后的HTML DOM高度
示例2:
<!DOCTYPE html>
<html>
<head>
<title>
HTML | DOM Style height Property
</title>
<style>
div {
height:10px;
background-color:green;
width:100px;
}
</style>
</head>
<body>
<br>
<button onclick="Play()">
Click to increase height of object
</button>
<br />
<br />
<script>
function Play() {
document.getElementById("block"
).style.height = "100px"
}
</script>
<center>
<div id="block">
</div>
</center>
</body>
</html>
输出:
- 之前:
之前的DOM Height示例
- 后:
之后的DOM高度
支持的浏览器:下面列出了DOM Style height属性支持的浏览器:
- 谷歌浏览器1.0
- Internet Explorer 4.0
- Firefox 1.0
- Opera
- Safari 1.0
相关用法
- HTML embed height用法及代码示例
- HTML Video height用法及代码示例
- HTML IFrame height用法及代码示例
- HTML Object Height用法及代码示例
- HTML Screen height用法及代码示例
- HTML input image height用法及代码示例
- HTML Style top用法及代码示例
- HTML Style right用法及代码示例
- HTML Style outline用法及代码示例
- HTML Style backgroundImage用法及代码示例
- HTML Style textAlignLast用法及代码示例
- HTML Style animationDelay用法及代码示例
- HTML Style animationName用法及代码示例
注:本文由纯净天空筛选整理自roshalmoraes大神的英文原创作品 HTML | DOM Style height Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。