HTML - DOM Style 对象 bottom 属性



HTML DOM Style 对象 **bottom** 属性设置或返回定位元素的底部位置。它还指定边距、填充、滚动条和边框。

定位元素是指其 position 属性设置为 fixed、relative 或 absolute 的元素。

语法

设置 bottom 属性
object.style.bottom= "auto | length | percentage | initial | inherit";
获取 bottom 属性
object.style.bottom;

属性值

描述
auto 这是默认值,浏览器会设置底部位置。
length 它使用像素和其他 CSS 测量单位设置底部位置。
percentage 它使用百分比值设置底部位置。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

HTML DOM Style 对象“bottom”属性示例

以下示例使用 length 和 percentage 设置 p 元素的底部位置。这里我们使用了绝对定位。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object bottom Property
    </title>
    <style>
        #para {
            position: absolute;
        }
    </style>
</head>
<body>
    <button onclick="fun()">Length</button>
    <button onclick="funTwo()">Percentage</button>
    <p id="para">Click to set the value to 50px</p>
    <script>
        function fun() {
            document.getElementById("para")
                .style.bottom = "50px";
        }
        function funTwo() {
            document.getElementById("para")
                .style.bottom = "28%";
        }
    </script>
</body>
</html>

支持的浏览器

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