HTML - DOM样式对象marginBottom属性



HTML DOM 样式对象 **marginBottom** 属性设置或返回元素的下边距。

语法

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

属性值

描述
百分比 它指定下边距为父元素宽度的百分比。
长度 它指定下边距为长度单位,默认值为 0。
auto 它允许浏览器设置下边距值。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的下边距。

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

以下示例设置并获取 div 元素的下边距。

设置下边距

以下示例使用长度值和百分比设置下边距。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object marginBottom Property
    </title>
    <style>
        div {
            border: 2px solid #04af2f;
        }
        #margin {
            border: 1px solid black;
            margin: 15px;
        }
    </style>
</head>
<body>
    <h3>
        Click to set bottom margin.
    </h3>
    <button onclick="fun()">Set Margin</button>
    <button onclick="funTwo()">
        Set Margin in Percentage
    </button>
    <br>
    <br>
    <div>
        <div id="margin">
            <p>Welcome to Tutorials Point.</p>
        </div>
    </div>
    <script>
        function fun() {
            document.getElementById("margin")
                .style.marginBottom = "40px";
        }
        function funTwo() {
            document.getElementById("margin")
                .style.marginBottom = "10%";
        }
    </script>
</body>
</html>

获取下边距值

以下示例获取应用于 div 元素的下边距值。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object marginBottom Property
    </title>
    <style>
        div {
            border: 2px solid #04af2f;
        }
        #margin {
            border: 1px solid black;
            margin: 15px;
        }
    </style>
</head>
<body>
    <h3>
        Click to set bottom margin.
    </h3>
    <button onclick="fun()">Get Margin</button>
    <button onclick="funTwo()">
        Get Margin in Percentage
    </button>
    <br>
    <br>
    <p id="result"></p>
    <br><br>
    <div>
        <div id="margin">
            <p>Welcome to Tutorials Point.</p>
        </div>
    </div>
    <script>
        function fun() {
            let x=document.getElementById("margin")
                .style.marginBottom = "40px";
            document.getElementById("result")
                .innerHTML="Bottom Margin: " +x;
        }
        function funTwo() {
            let x =document.getElementById("margin")
                .style.marginBottom = "10%";
            document.getElementById("result")
                .innerHTML="Bottom Margin: " +x;
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
marginBottom 是 1 是 12 是 1 是 1 是 3.5
html_dom_style_object_reference.htm
广告