CSS Border-Bottom-Left-Radius Property
CSS 1 |
CSS 2 |
CSS 3 |
|
|
|
|
Description
The two length values of the ‘border-*-radius’ properties define the radii of a quarter ellipse that defines the shape of the corner of the outer border edge. The first value is the horizontal radius. If the second length is omitted it is equal to the first (and the corner is thus a quarter circle). If either length is zero, the corner is square, not rounded.
Syntax
border-bottom-left-radius: [length] [length]
Possible values
- [length]
Initial Value
0
Applies To
All elements
Inherited
No
Media
Visual
Example
.class {
border-bottom-left-radius: 4em;
}