Open In App

CSS border-bottom-left-radius Property

The border-bottom-left-radius property is used to define the radius of the bottom left corner of the border i.e. it makes the bottom-left of the border rounded.

Syntax: 



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

Default Value: its default value is 0. 

Property Value: 



Examples: In this example, we are using the border-bottom-left-radius: 20px 50px; property.




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS border-bottom-left-radius Property
    </title>
    <style>
        #bdr {
            border: 2px solid black;
            padding: 10px;
            color: #009900;
            font-size: 40px;
            border-bottom-left-radius: 25px;
        }
    </style>
</head>
 
<body>
    <center>
        <h2>border-bottom-left-radius: 25px:</h2>
        <div id="bdr">
            <p>GeeksforGeeks</p>
        </div>
    </center>
</body>
</html>

Output: 

Examples: In this example, we are using the border-bottom-left-radius: % [length|%]; property.




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS border-bottom-left-radius Property
    </title>
    <style>
        #bdr {
            border: 2px solid black;
            padding: 50px;
            color: #009900;
            font-size: 40px;
            border-bottom-left-radius: 50%;
        }
    </style>
</head>
 
<body>
    <center>
        <h2>border-bottom-left-radius: 50%:</h2>
        <div id="bdr">
            <p>GeeksforGeeks</p>
        </div>
    </center>
</body>
</html>

Output: 

Examples: In this example, we are using the border-bottom-left-radius: initial; property.




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS border-bottom-left-radius Property
    </title>
    <style>
        #bdr {
            border: 2px solid black;
            padding: 50px;
            color: #009900;
            font-size: 40px;
            border-bottom-left-radius: initial;
        }
    </style>
</head>
 
<body>
    <center>
        <h2>border-bottom-left-radius: initial</h2>
        <div id="bdr">
            <p>GeeksforGeeks</p>
        </div>
    </center>
</body>
</html>

Output: 

Supported Browsers: The browser supported by CSS border-bottom-left-radius Property are listed below:


Article Tags :