HTML - DOM样式对象 top 属性



HTML DOM 样式对象 **top** 属性设置或返回**已定位**元素的顶部位置,包括边距、边框、填充和滚动条。

语法

以下是获取或设置 top 属性的语法。

设置 top 属性

object.style.top= "auto | length | percentage | initial | inherit";

获取 top 属性

object.style.top;

属性值

描述
auto 这是默认值,让浏览器指定顶部位置。
长度 它以长度单位指定顶部位置,允许负值。
百分比 它以父元素高度的百分比指定顶部位置。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示已定位元素的顶部位置。

HTML DOM 样式对象“top”属性示例

以下示例设置 p 和 div 元素的顶部位置。

为 p 元素设置 top 属性

以下示例使用长度和百分比值设置 p 元素的顶部位置。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object top Property
    </title>
    <style>
        #top {
            position: absolute;
        }
    </style>
</head>
<body>
    <p>
        Click to set the top position.
    </p>
    <button onclick="fun()">
        Set Top position
    </button>
    <button onclick="funTwo()">
        Set Top %
    </button>
    <p id="top">
        Welcome To Tutorials Point. 
    </p>
    <script>
        function fun() {
            document.getElementById("top")
                .style.top = "150px";
        }
        function funTwo() {
            document.getElementById("top")
                .style.top = "40%";
        }
    </script>
</body>
</html>

为 div 元素设置 top 属性

以下示例使用负长度值设置 div 元素的顶部位置。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object top Property
    </title>
    <style>
        #top {
            position: absolute;
        }
    </style>
</head>
<body>
    <p>
        Click to set the top position.
    </p>
    <button onclick="fun()">
        Set Top position
    </button>
    <div id="top">
        <p>
            Welcome To Tutorials Point.
        </p>
    </div>
    <script>
        function fun() {
            document.getElementById("top")
                .style.top = "-5px";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
top 是 1 是 12 是 1 是 1 是 6
html_dom_style_object_reference.htm
广告