Prop Style Borderbottomrightradius
# HTML DOM Style borderBottomRightRadius Property
## Example
Add a rounded border to the bottom-right corner of a div element:
document.getElementById("myDIV").style.borderBottomRightRadius="25px";
[Try it Yourself Β»](#)
***
## Definition and Usage
The `borderBottomRightRadius` property sets or returns the shape of the bottom-right border.
**Tip:** This property allows you to add rounded borders to an element!
***
## Browser Support
!(#)!(#)!(#)!(#)!(#)
The `borderBottomRightRadius` property is supported in IE9+, Firefox, Chrome, Safari, and Opera.
***
## Syntax
Return the `borderBottomRightRadius` property:
_object_.style.borderBottomRightRadius
Set the `borderBottomRightRadius` property:
_object_.style.borderBottomRightRadius="length|% [length|%]|initial|inherit"
## Property Values
| Value | Description |
| :--- | :--- |
| _length_ | Defines the shape of the bottom-right corner. Default value is 0. |
| _%_ | Defines the shape of the bottom-right corner in %. |
| initial | Sets this property to its default value. See (#). |
| inherit | Inherits this property from its parent element. See (#). |
## Technical Details
| Default Value: | 0 |
| :--- | :--- |
| Return Value: | A String, representing the border-bottom-right-radius property of an element. |
| CSS Version | CSS3 |
***
## Related Articles
CSS Reference: (#)
YouTip