corner-bottom-right-shape
Die corner-bottom-right-shape
CSS Eigenschaft gibt die Form der unteren rechten Ecke eines Kastens an, innerhalb seines border-radius
Bereichs.
Für eine vollständige Beschreibung des Verhaltens von Eckenformen und zahlreiche Beispiele siehe die corner-shape
Shorthand-Eigenschaftsseite.
Syntax
/* Keyword values */
corner-bottom-right-shape: notch;
corner-bottom-right-shape: scoop;
/* superellipse() function values */
corner-bottom-right-shape: superellipse(1.7);
corner-bottom-right-shape: superellipse(-3);
/* Global values */
corner-bottom-right-shape: inherit;
corner-bottom-right-shape: initial;
corner-bottom-right-shape: revert;
corner-bottom-right-shape: revert-layer;
corner-bottom-right-shape: unset;
Werte
Die corner-bottom-right-shape
Eigenschaft wird mit einem <corner-shape-value>
Wert spezifiziert.
Offizielle Definition
Wert in der Datenbank nicht gefunden!Offizielle Syntax
corner-bottom-right-shape =
<corner-shape-value>
<corner-shape-value> =
round |
scoop |
bevel |
notch |
square |
squircle |
<superellipse()>
<superellipse()> =
superellipse( <number [-∞,∞]> |
infinity |
-infinity )
Beispiele
Weitere verwandte Beispiele finden Sie auf der corner-shape
Referenzseite.
Grundlegende Verwendung von corner-bottom-right-shape
HTML
Das Markup für dieses Beispiel enthält ein einzelnes <div>
Element.
<div></div>
CSS
Wir geben dem Kasten einige grundlegende Stile, die wir der Übersichtlichkeit halber ausgeblendet haben. Wir wenden auch einen box-shadow
, einen border-radius
von 30% / 20%
, und eine corner-bottom-right-shape
von notch
an.
div {
box-shadow: 1px 1px 3px gray;
border-radius: 30% / 20%;
corner-bottom-right-shape: notch;
}
Ergebnis
Das gerenderte Ergebnis sieht so aus:
Spezifikationen
Specification |
---|
CSS Borders and Box Decorations Module Level 4> # propdef-corner-bottom-right-shape> |
Browser-Kompatibilität
Loading…
Siehe auch
corner-shape
Shorthand-Eigenschaftcorner-top-left-shape
,corner-top-right-shape
, undcorner-bottom-left-shape
corner-start-start-shape
,corner-start-end-shape
,corner-end-start-shape
, undcorner-end-end-shape
border-radius
Shorthand-Eigenschaftborder-bottom-right-radius
- CSS borders and box decorations Modul
- CSS backgrounds and borders Modul