HTML - DOM Style 对象 borderRadius 属性



HTML DOM Style 对象 'borderRadius' 属性用作简写属性,它设置或返回四个不同的 borderRadius 属性,它们分别是 **borderTopLeftRadius**、**borderTopRightRadius**、**borderBottomRightRadius** 和 **borderBottomLeftRadius**。

语法

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

设置 borderRadius 属性
object.style.borderRadius= "1-4 length | % / 1-4 length|%| initial | inherit";
获取 borderRadius 属性
object.style.borderRadius;

属性值

描述
长度 它指定边框形状。
百分比 它以百分比指定边框形状。
初始 它用于将此属性设置为其默认值。
继承 它用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的边框半径属性。

HTML DOM Style 对象 'borderRadius' 属性示例

以下示例说明如何使用长度值和百分比值添加边框半径。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object borderRadius Property
    </title>
    <style>
        section {
            border: aqua 2px solid;
            height: 400px;
            width: 400px;
        }
    </style>
</head>
<body>
    <p>
        Click to add or change the border radius.
    </p>
    <button onclick="fun()">Add</button>
    <button onclick="funTwo()">Change</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
            .style.borderRadius = "25px";
        }
        function funTwo() {
            document.getElementById("border")
            .style.borderRadius = "15%";
        }
    </script>
</body>
</html>

支持的浏览器

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