HTML DOM top 属性

HTML DOM Style 对象参考手册

定义和用法

top 属性设置一个定位元素的上外边距边界与其包含块上边界之间的偏移。

语法:

Object.style.top=auto|%|length

可能的值

描述
auto 默认。通过浏览器来计算顶部的位置。
% 设置元素的顶部到最近一个具有定位设置父元素的上边缘的百分比位置。
length 使用 px、cm 等单位设置元素的顶部到最近一个具有定位设置上边缘的顶部的位置。可使用负值。

提示和注释

注释:如果 "position" 属性的值为 "static",那么设置 "top" 属性不会产生任何效果。

实例

本例设置元素的上边界:

<html>
<head>
<style type="text/css">
input
{
position:absolute;
}
</style>
<script type="text/javascript">
function setTopEdge()
{
document.getElementById("b1").style.top="100px";
}
</script>
</head>
<body>

<input type="button" id="b1" onclick="setTopEdge()"
value="Set top edge to 100 px" />

</body>
</html>

HTML DOM Style 对象参考手册