corner-bottom-left-shape CSS propertyExperimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The corner-bottom-left-shape CSS property specifies the shape of a box's bottom-left corner, within its border-radius area.
For a full description of corner shape behavior and multiple examples, see the corner-shape shorthand property page.
/* Keyword values */
corner-bottom-left-shape: bevel;
corner-bottom-left-shape: round;
/* superellipse() function values */
corner-bottom-left-shape: superellipse(0.7);
corner-bottom-left-shape: superellipse(-1.9);
/* Global values */
corner-bottom-left-shape: inherit;
corner-bottom-left-shape: initial;
corner-bottom-left-shape: revert;
corner-bottom-left-shape: revert-layer;
corner-bottom-left-shape: unset;The corner-bottom-left-shape property is specified using a <corner-shape-value> value.
| Initial value | round |
|---|---|
| Applies to | all elements. It also applies to ::first-letter. |
| Inherited | no |
| Computed value | The corresponding superellipse() value. |
| Animation type | Animates as per superellipse interpolation. |
corner-bottom-left-shape =
<corner-shape-value>
<corner-shape-value> =
round |
scoop |
bevel |
notch |
square |
squircle |
<superellipse()>
<superellipse()> =
superellipse( <number> |
infinity |
-infinity )
You can find other related examples on the corner-shape reference page.
corner-bottom-left-shape usageThe markup for this example contains a single <div> element.
<div></div>We give the box some basic styles, which we've hidden for brevity. We also apply a box-shadow, a border-radius of 80px 40% 60px 20%, and a corner-bottom-left-shape of squircle.
div {
box-shadow: 1px 1px 3px gray;
border-radius: 80px 40% 60px 20%;
corner-bottom-left-shape: squircle;
}The rendered result looks like this:
corner-shape shorthand propertycorner-top-left-shape, corner-top-right-shape, and corner-bottom-right-shapecorner-start-start-shape, corner-start-end-shape, corner-end-start-shape, and corner-end-end-shapeborder-radius shorthand propertyborder-bottom-left-radius