HTML - DOM Style 对象 borderRightWidth 属性



HTML DOM Style 对象的 **borderRightWidth** 属性设置或返回元素的右侧边框宽度。

语法

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

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

属性值

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

返回值

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

HTML DOM Style 对象“borderRightWidth”属性的示例

以下示例获取并设置右侧边框宽度。

设置元素的右侧边框宽度

以下示例说明了不同的右侧边框宽度值,如“length”、“thin”、“medium”和“thick”。

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderRightWidth 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.borderRightWidth = "10px";
        }
        function thin() {
            document.getElementById("border")
                .style.borderRightWidth = "thin";
        }
        function medium() {
            document.getElementById("border")
                .style.borderRightWidth = "medium";
        }
        function thick() {
            document.getElementById("border")
                .style.borderRightWidth = "thick";
        }
    </script>
</body>
</html>

获取右侧边框宽度值

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

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderRightWidth 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="right"></p>
    <script>
        function length() {
            let x = document.getElementById("border")
                .style.borderRightWidth = "10px";
            document.getElementById("right").innerHTML = x;
        }
        function thin() {
            let x = document.getElementById("border")
                .style.borderRightWidth = "thin";
            document.getElementById("right").innerHTML = x;
        }
        function medium() {
            let x = document.getElementById("border")
                .style.borderRightWidth = "medium";
            document.getElementById("right").innerHTML = x;
        }
        function thick() {
            let x = document.getElementById("border")
                .style.borderRightWidth = "thick";
            document.getElementById("right").innerHTML = x;
        }
    </script>
</body>
</html>

支持的浏览器

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