diff options
Diffstat (limited to 'files/de/web/css/border-bottom-right-radius/index.html')
-rw-r--r-- | files/de/web/css/border-bottom-right-radius/index.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/files/de/web/css/border-bottom-right-radius/index.html b/files/de/web/css/border-bottom-right-radius/index.html new file mode 100644 index 0000000000..786a7a21a7 --- /dev/null +++ b/files/de/web/css/border-bottom-right-radius/index.html @@ -0,0 +1,56 @@ +--- +title: border-bottom-right-radius +slug: Web/CSS/border-bottom-right-radius +tags: + - CSS + - CSS Eigenschaft + - CSS Referenz + - CSS Ränder + - Layout + - NeedsContent +translation_of: Web/CSS/border-bottom-right-radius +--- +<p>{{CSSRef}}</p> + +<p>Die CSS Eigenschaft <code>border-bottom-right-radius</code> legt die Abrundung der unteren rechten Ecke eines Elements fest. Vor Gecko 2.0 (Firefox 4) war diese Eigenschaft unter dem Namen <code>-moz-border-radius-bottomright</code> bekannt.</p> + +<p>Weitere Informationen sind unter <a href="/de/CSS/border-top-left-radius" title="de/CSS/border-top-left-radius"><code>border-top-left-radius</code></a> verfügbar.</p> + +<p>{{cssinfo("border-bottom-right-radius")}}</p> + +<h2 id="Syntax">Syntax</h2> + +<pre class="brush:css">border-bottom-right-radius: <em>radius</em> /* the corner is a circle */ E.g. border-bottom-right-radius: 3px +border-bottom-right-radius: <em>horizontal</em> <em>vertical</em> /* the corner is an ellipsis */ E.g. border-bottom-right-radius: 0.5em 1em + +border-bottom-right-radius: inherit +</pre> + +<h3 id="Formale_Syntax">Formale Syntax</h3> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<h2 id="Spezifikation">Spezifikation</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spezifikation</th> + <th scope="col">Status</th> + <th scope="col">Kommentar</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS3 Backgrounds', '#border-bottom-right-radius', 'border-bottom-right-radius')}}</td> + <td>{{Spec2('CSS3 Backgrounds')}}</td> + <td>Initial definition</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2> + +<p>{{Compat("css.properties.border-bottom-right-radius")}}</p> |