Style borderBottomLeftRadius Property
- Previous Page borderBottomColor
- Next Page borderBottomRightRadius
- Go to the Previous Level HTML DOM Style Object
Definition and Usage
borderBottomLeftRadius
Sets or returns the shape of the bottom left border.
Tip:This property allows you to add rounded border corners to elements!
See also:
CSS Reference Manual:border-bottom-left-radius property
Example
Add rounded border corners to the bottom left corner of the div element:
document.getElementById("myDIV").style.borderBottomLeftRadius = "25px";
Syntax
Return borderBottomLeftRadius property:
object.style.borderBottomLeftRadius
Set borderBottomLeftRadius property:
object.style.borderBottomLeftRadius = "length|% [length|%]|initial|inherit"
Property Value
Value | Description |
---|---|
length | Define the shape of the bottom left corner. The default value is 0. |
% | Define the shape of the bottom left corner with %. |
initial | Sets this property to its default value. See initial. |
inherit | Inherits this property from its parent element. See inherit. |
Technical Details
Default value: | 0 |
---|---|
Return value: | A string that represents the element's border-bottom-left-radius property. |
CSS Version: | CSS3 |
Browser Support
The numbers in the table indicate the browser version that first fully supports this attribute.
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
5.0 | 9.0 | 4.0 | 5.0 | 10.5 |
- Previous Page borderBottomColor
- Next Page borderBottomRightRadius
- Go to the Previous Level HTML DOM Style Object