CSS border-bottom-left-radius Property


The border-bottom-left-radius property defines the radius of the bottom-left corner.

The border-bottom-left-radius CSS property sets the rounded shape for the 'bottom-left' corner of an element border box.

The property takes in one or two values that define the radii of a quarter ellipse that defines the shape of the corner of the outer border edge (see the diagram below). The first value is the horizontal radius, the second the vertical radius. If the second value is omitted it is copied from the first. If either length is zero, the corner is square, not rounded. Percentages for the horizontal radius refer to the width of the border box, whereas percentages for the vertical radius refer to the height of the border box. Negative values are not allowed.

Syntax

The syntax of the property is given with:

border-bottom-left-radius: 
[ length | percentage ]1 or 2 values | initial | inherit

This shorthand notation can take one, or two whitespace separated values.

  • The optional second length values define the vertical radii for the bottom-left corner and the corner shape is thus a quarter ellipse.
  • If the second length is omitted, or it is equal to the first — the corner shape is a quarter circle. If either length is zero, the corner is square, not rounded.

Example -