New! My 44-page ebook "CSS in 44 minutes" is out! 😃

Get it now →

#border-bottom-left-radius

Defines the radius of the bottom left corner.

default border-bottom-left-radius: 0;

Removes any border radius.

border-bottom-left-radius: 20px;

You can use pixel values.

border-bottom-left-radius: 50%;

You can use percentage values. In this example, the radius starts halfway on the bottom border, and ends halfway on the left border.

border-bottom-left-radius: 20px 50%;

If you set two values, the first one is for the bottom border, the second one for the left border.