Open In App

CSS border-bottom-right-radius Property

The border-bottom-right-radius property in CSS is used to define the radius of the right bottom corner of the border of a given element. It is used to round the corner on the right side of the bottom border. 

Syntax:



border-bottom-right-radius:length|[value%]|initial|inherit;

Property Value: The border-bottom-right-radius property values are listed below:

Example: In this example we are using above-explained property.






<!DOCTYPE html>
<html>
<head>
    <title>
        border-bottom-right-radius property
    </title>
    <style>
        #length {
            border-color: green;
            border-style: solid;
            border-bottom-right-radius: 20px;
        }
 
        #percentage {
            border-color: green;
            border-style: solid;
            border-bottom-right-radius: 59%;
        }
 
        #inherit {
            border-color: green;
            border-style: solid;
            border-bottom-right-radius: inherit;
        }
    </style>
</head>
 
<body style="text-align:center">
 
    <h1>GeeksforGeeks</h1>
    <h3>border-bottom-right-radius property</h3>
 
    <div id="length">
        border-bottom-right-radius: length;
    </div><br>
 
    <div id="percentage">
        border-bottom-right-radius: percentage;
    </div><br>
 
    <div id="inherit">
        border-bottom-right-radius: inherit;
    </div>
</body>
</html>

Output: Supported Browsers: The browser supported by border-bottom-right-radius property are listed below:


Article Tags :