HTML - DOM样式对象 borderTopLeftRadius 属性



HTML DOM 样式对象 **borderTopLeftRadius** 属性设置或返回左上角的边框半径。

语法

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

属性值

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

返回值

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

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

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

设置左上角边框半径

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopLeftRadius 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 left corner.
    </p>
    <button onclick="fun()">Change</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderTopLeftRadius = "40px";
        }
    </script>
</body>
</html>

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

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopLeftRadius 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 left corner.
    </p>
    <button onclick="fun()">Change</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderTopLeftRadius = "40px 100px";
        }
    </script>
</body>
</html>

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

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopLeftRadius 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 left corner.
    </p>
    <button onclick="fun()">Change</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderTopLeftRadius = "15%";
        }
    </script>
</body>
</html>

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

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

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderTopLeftRadius 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 left corner.
    </p>
    <button onclick="fun()">Change</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderTopLeftRadius = "15% 40%";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
borderTopLeftRadius 支持 4 支持 12 支持 4 支持 5 支持 10.5
html_dom_style_object_reference.htm
广告