HTML - DOM Style 对象 borderTopRightRadius 属性



HTML DOM Style 对象 **borderTopRightRadius** 属性设置或返回右上角的边框半径。

语法

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

属性值

描述
长度 它定义了右上角边框的形状。可以使用双长度值来定义四分之一椭圆的半径,其中第一个值表示水平半径或边框框的宽度,第二个值表示垂直半径或边框框的高度。它的默认值为 0。
百分比 它以百分比的形式定义了右上角边框的形状。可以使用双百分比值来定义四分之一椭圆的半径,其中第一个值表示水平半径或边框框的宽度,第二个值表示垂直半径或边框框的高度。
初始 它用于将此属性设置为其默认值。
继承 它用于继承其父元素的属性。

返回值

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

HTML DOM Style 对象“borderTopRightRadius”属性示例

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

设置右上角边框半径

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopRightRadius Property
    </title>
    <style>
        section {
            border: aqua 2px solid;
            height: 400px;
            width: 400px;
            text-align: center;
        }
    </style>
</head>
<body>
    <p>
        Click to set the radius of top
        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.borderTopRightRadius = "40px";
        }
    </script>
</body>
</html>

使用双值设置右上角边框半径

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopRightRadius Property
    </title>
    <style>
        section {
            border: aqua 2px solid;
            height: 400px;
            width: 400px;
            text-align: center;
        }
    </style>
</head>
<body>
    <p>
        Click to set the radius of top 
        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.borderTopRightRadius = "40px 100px";
        }
    </script>
</body>
</html>

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

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopRightRadius Property
    </title>
    <style>
        section {
            border: aqua 2px solid;
            height: 400px;
            width: 400px;
            text-align: center;
        }
    </style>
</head>
<body>
    <p>
        Click to set the radius of 
        top 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.borderTopRightRadius = "15%";
        }
    </script>
</body>
</html>

使用双百分比值设置右上角边框半径

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopRightRadius Property
    </title>
    <style>
        section {
            border: aqua 2px solid;
            height: 400px;
            width: 400px;
            text-align: center;
        }
    </style>
</head>
<body>
    <p>
        Click to set the radius of 
        top 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.borderTopRightRadius = "15% 40%";
        }
    </script>
</body>
</html>

支持的浏览器

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