The corner-bottom-shape CSS property specifies the shape of both the corners on a box's bottom edge, within their border-radius area.
For a full description of corner shape behavior and multiple examples, see the corner-shape shorthand property page.
The corner-bottom-shape property is a shorthand for the following physical properties:
/* Single keyword value set for both corners */ corner-bottom-shape: scoop; corner-bottom-shape: square; /* Single superellipse() value set for both corners */ corner-bottom-shape: superellipse(0.7); corner-bottom-shape: superellipse(-2.8); /* Left-hand corner, right-hand corner */ corner-bottom-shape: scoop square; corner-bottom-shape: scoop superellipse(0.7); /* Global values */ corner-bottom-shape: inherit; corner-bottom-shape: initial; corner-bottom-shape: revert; corner-bottom-shape: revert-layer; corner-bottom-shape: unset;
The corner-bottom-shape property is specified using one or two <corner-shape-value> values:
corner-bottom-shape =
<'corner-top-left-shape'>{1,2}
<corner-top-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-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 60px 30px 20% 40%, and a corner-bottom-shape of square squircle.
div {
box-shadow: 1px 1px 3px gray;
border-radius: 60px 30px 20% 40%;
corner-bottom-shape: square squircle;
}
The rendered result looks like this:
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
corner-bottom-shape |
139 | 139 | No | 123 | No | 139 | No | 91 | No | No | 139 | No |
corner-shape shorthand propertycorner-top-shape, corner-left-shape, and corner-right-shape
corner-block-start-shape, corner-block-end-shape, corner-inline-start-shape, and corner-inline-end-shape
border-radius shorthand propertyborder-bottom-left-radius and border-bottom-right-radius
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/corner-bottom-shape