HTML - DOM样式对象borderBottomWidth属性



HTML DOM 样式对象**borderBottomWidth**属性设置或返回元素的下边框宽度。

语法

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

设置borderBottomWidth属性
object.style.borderBottomWidth= "thin | medium | thick | length | initial | inherit";
获取borderBottomWidth属性
object.style.borderBottomWidth;

属性值

描述
thin 指定元素的细下边框。
medium 默认值,指定元素的中等下边框。
thick 指定元素的粗下边框。
length 使用CSS测量单位(如px)指定下边框宽度。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

返回一个字符串值,表示元素的下边框宽度。

HTML DOM 样式对象 'borderBottomWidth' 属性示例

以下示例获取和设置下边框宽度。

设置元素的下边框宽度

以下示例演示不同的下边框宽度值,如“length”、“thin”、“medium”和“thick”。

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderBottomWidth Property
    </Title>
    <style>
        h1 {
            border: solid 1px #04af2f;
        }
    </style>
</head>
<body>
    <p>Click to change the border style.</p>
    <button onclick="length()">Change Width</button>
    <button onclick="thin()">Thin</button>
    <button onclick="medium()">Medium</button>
    <button onclick="thick()">Thick</button>
    <h1 id="border">Welcome to Tutorials Point...</h1>
    <script>
        function length() {
            document.getElementById("border")
            .style.borderBottomWidth = "10px";
        }
        function thin() {
            document.getElementById("border")
            .style.borderBottomWidth = "thin";
        }
        function medium() {
            document.getElementById("border")
            .style.borderBottomWidth = "medium";
        }
        function thick() {
            document.getElementById("border")
            .style.borderBottomWidth = "thick";
        }
    </script>
</body>
</html>

获取下边框宽度值

以下示例返回左边框宽度的值。

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderBottomWidth Property
    </Title>
    <style>
        h1 {
            border: solid 1px #04af2f;
        }
    </style>
</head>
<body>
    <p>Click to change the border style.</p>
    <button onclick="length()">Change Width</button>
    <button onclick="thin()">Thin</button>
    <button onclick="medium()">Medium</button>
    <button onclick="thick()">Thick</button>
    <h1 id="border">Welcome to Tutorials Point...</h1>
    <p id="bottom"></p>
    <script>
        function length() {
            let x = document.getElementById("border")
                .style.borderBottomWidth = "10px";
            document.getElementById("bottom").innerHTML = x;
        }
        function thin() {
            let x = document.getElementById("border")
                .style.borderBottomWidth = "thin";
            document.getElementById("bottom").innerHTML = x;
        }
        function medium() {
            let x = document.getElementById("border")
                .style.borderBottomWidth = "medium";
            document.getElementById("bottom").innerHTML = x;
        }
        function thick() {
            let x = document.getElementById("border")
                .style.borderBottomWidth = "thick";
            document.getElementById("bottom").innerHTML = x;
        }
    </script>
</body>
</html>

支持的浏览器

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