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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。