CSS borderbottomrightradius Property (original) (raw)
CSS border-bottom-right-radius Property
Last Updated : 23 Aug, 2024
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:
- **length: It is used to specify the radius of the right bottom corner in fixed length in px, em etc. The default value is 0.
- **percentage %: It is used to specify the radius of the right bottom corner of the border in percentage.
- **initial: It is used to set the border-bottom-right-radius property to its default value.
- **inherit: This property is inherited from its parent element.
**Example: In this example we are using above-explained property.
HTML `
border-bottom-right-radius property