--- title: border-top-left-radius slug: Web/CSS/border-top-left-radius tags: - CSS - CSS Referenz translation_of: Web/CSS/border-top-left-radius ---
{{ CSSRef }}
Die border-top-left-radius
Eigenschaft die Abrundung der oberen, linken Ecke eines Elements fest.
Vor Gecko 2.0 (Firefox 4.0) war diese Eigenschaft als -moz-border-radius-topleft
bekannt. Diese Eigenschaft wird weiterhin übergangsweise unterstützt.
Weitere Informationen sind unter border-radius
verfügbar.
{{cssinfo("border-top-left-radius")}}
Formal syntax: {{csssyntax("border-top-left-radius")}} -moz-border-radius-topleft: [ <Länge> | <Prozentzahl> ] [ <Länge> | <Prozentzahl> ]? border-top-left-radius:[ <Länge> | <Prozentzahl> ] [ <Länge> | <Prozentzahl> ]?
Seit Gecko 1.9.1 (Firefox 3.5) wird ein zweiter, optionaler Wert unterstützt, welcher Längenwerte für elliptische Ecken akzeptiert. Es gibt zwei Werte, die die Form der Ecke beschreiben: Der erste Wert ist der horizontale, der zweite Wert der vertikale Radius. Wird nur ein Wert angegeben, gilt dieser für beide Richtungen (horizontal und vertikal).
div { -moz-border-radius-topleft: 20px; /* Firefox bis Version 3.6 */ -webkit-border-top-left-radius: 20px; /* Safari, Chrome (vor WebKit Version 533) */ border-top-left-radius: 20px; /* Firefox 4; Browser mit CSS3 Unterstützung */ }
/* Elliptische Ecke (unterstützt seit Firefox 3.5 [Gecko 1.9.1]) */ div { -moz-border-radius-topleft: 20px; /* Runde Ecke, Fallback für Firefox 1-3.0 */ -moz-border-radius-topleft: 20px 10px; /* elliptischer Rahmen für Firefox 3.5-3.6 */ -webkit-border-top-left-radius: 20px 10px; /* Safari, Chrome (vor WebKit Version 532.5) */ border-top-left-radius: 20px 10px; /* Firefox 4; Browser mit CSS3 Unterstützung */ }
Spezifikation | Status | Kommentar |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#border-top-left-radius', 'border-top-left-radius')}} | {{Spec2('CSS3 Backgrounds')}} | Initial definition |
{{cssinfo}}
{{Compat("css.properties.border-top-left-radius")}}
{{ languages( { "en": "en/CSS/border-top-left-radius", "fr": "fr/CSS/border-top-left-radius", "ja": "ja/CSS/border-top-left-radius", "pl": "pl/CSS/-moz-border-radius-topleft" } ) }}