HTML - DOM样式对象 borderBottomRightRadius 属性



HTML DOM 样式对象 **borderBottomRightRadius** 属性设置或返回右下角边框的圆角半径。

语法

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

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

属性值

描述
长度 (length) 定义右下角边框的形状。其默认值为 0。
百分比 (percentage) 以百分比定义右下角边框的形状。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的 border-bottom-right-radius 属性。

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

以下示例说明如何使用长度和百分比值更改右下角的边框半径。

设置右下角边框半径

以下示例使用像素值设置右下角的边框半径。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderBottomRightRadius Property
    </title>
    <style>
        section {
            border: aqua 2px solid;
            height: 400px;
            width: 400px;
        }
    </style>
</head>
<body>
    <p>
        Click to set the radius of Bottom 
        Border of right corner.
    </p>
    <button onclick="fun()">Change</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderBottomRightRadius = "40px";
        }
    </script>
</body>
</html>

使用百分比设置右下角边框半径

以下示例使用百分比设置右下角的边框半径。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderBottomRightRadius Property
    </title>
    <style>
        section {
            border: aqua 2px solid;
            height: 400px;
            width: 400px;
        }
    </style>
</head>
<body>
    <p>
        Click to set the radius of Bottom Border
        of Right corner.
    </p>
    <button onclick="fun()">Change</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderBottomRightRadius = "15%";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
borderBottomRightRadius 是 4 是 12 是 4 是 5 是 10.5
html_dom_style_object_reference.htm
广告