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