HTML - DOM样式对象borderRight属性



HTML DOM 样式对象**borderRight**属性设置或返回元素的右边框属性。它是 `border-right-width`、`border-right-style` 和 `border-right-color` 的简写。

语法

设置 borderRight 属性
object.style.borderRight= "width | style | color | initial | inherit";
获取 borderRight 属性
object.style.borderRight;

属性值

描述
width 设置右边框宽度。
style 设置右边框样式。
color 设置右边框颜色。
initial 将此属性设置为其默认值。
inherit 继承其父元素的属性。

返回值

返回一个字符串值,表示元素的右边框宽度、样式和颜色属性。

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

以下示例为 section 元素设置右边框。

<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Style Object borderRight Property
    </title>
    <style>
        section {
            border : solid 1px;
        }
    </style>
</head>
<body>
    <button onclick="fun()">
        Add right Border
    </button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderRight = "4px solid #04af2f";
        }
    </script>
</body>
</html>

支持的浏览器

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