Open In App

HTML DOM Style borderRadius Property

The DOM Style borderRadius Property is used to set or return the four different borderRadius properties such as borderTopRightRadius, borderBottomRightRadius, and borderBottomLeftRadius of an element. It is used to add a rounded corner in an element. 

Syntax:



object.style.borderRadius
object.style.borderRadius = "1-4 length|% / 1-4 length|%
|initial|inherit" 

Property values:

Return Value: It returns a string value that represents the top, left, and bottom borderRadius of an element. 



Example: In this example, we will use DOM Style borderRadius




<!DOCTYPE html>
<html>
   
<head>
    <title>DOM Style borderRadius Property</title>
    <style>
        h1 {
            color: green;
            font-size: 35px;
        }
        #GFG {
            background: #009900;
            padding: 30px;
            text-align: center;
            width: 300px;
            height: 120px;
        }
    </style>
</head>
   
<body>
    <center>
        <h1>GeeksForGeeks</h1>
        <h2>DOM Style borderRadius Property</h2>
        <div id="GFG">
            <h2>GeeksforGeeks</h2>
        </div>
        <br>
        <button onclick="Geeks()">Submit</button>
       
        <script>
            function Geeks() {
                document.getElementById("GFG").style.borderRadius
                    = "25px";
            }
        </script>
    </center>
</body>
 
</html>

Output: 

 

Supported Browsers: The browser supported by DOM Style borderRadius property are listed below:


Article Tags :