HTML DOM height 属性
定义和用法
height 属性设置元素的高度。
语法:
Object.style.height=auto|length|%
可能的值
值 | 描述 |
---|---|
auto | 默认。浏览器会计算出实际的高度。 |
length | 使用 px、cm 等单位定义高度。 |
% | 基于其包含块的百分比高度。 |
实例
本例设置按钮的高度:
<html>
<head>
<script type="text/javascript">
function setHeight()
{
document.getElementById("b1").style.height="50px";
}
</script>
</head>
<body>
<input type="button" id="b1" onclick="setHeight()"
value="Change height of button to 50 px" />
</body>
</html>