diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:15 -0500 |
commit | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch) | |
tree | d4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/web/css/border-bottom-width | |
parent | 33058f2b292b3a581333bdfb21b8f671898c5060 (diff) | |
download | translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2 translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip |
initial commit
Diffstat (limited to 'files/de/web/css/border-bottom-width')
-rw-r--r-- | files/de/web/css/border-bottom-width/index.html | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/files/de/web/css/border-bottom-width/index.html b/files/de/web/css/border-bottom-width/index.html new file mode 100644 index 0000000000..6f67816001 --- /dev/null +++ b/files/de/web/css/border-bottom-width/index.html @@ -0,0 +1,82 @@ +--- +title: border-bottom-width +slug: Web/CSS/Border-bottom-width +tags: + - CSS + - CSS Referenz +translation_of: Web/CSS/border-bottom-width +--- +<p>{{CSSRef}}</p> + +<h2 id="Übersicht">Übersicht</h2> + +<p>Die <code>border-bottom-width</code> Eigenschaft legt die Breite des unteren Rahmens fest.</p> + +<p>{{cssinfo("border-bottom-width")}}</p> + +<h2 id="Syntax">Syntax</h2> + +<pre class="eval">border-bottom-width: {{csssyntax("border-bottom-width")}} + +</pre> + +<h3 id="Werte">Werte</h3> + +<dl> + <dt><Länge></dt> + <dd>Eine <a href="/de/CSS/Einheiten#L.c3.a4ngen" title="de/CSS/Einheiten#L.c3.a4ngen">Längenangabe</a> die, die Rahmenstärke explizit angibt. Es sind keine negativen Werte erlaubt.</dd> + <dt>thin</dt> + <dd>Eine dünne Rahmenlinie (1px).</dd> + <dt>medium</dt> + <dd>Standardwert. Eine mitteldicke Rahmenlinie (3px).</dd> + <dt>thick</dt> + <dd>Eine dicke Rahmenlinie (5px).</dd> + <dt>inherit</dt> + <dd>Der Wert des Elternelements wird geerbt.</dd> +</dl> + +<h2 id="Beispiele">Beispiele</h2> + +<pre>.beispielEins { + border-bottom-width: 10px; +} + +.beispielZwei { + border-bottom-width: thin; +} +</pre> + +<h2 id="Specifications" name="Specifications">Spezifikation</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spezifikation</th> + <th scope="col">Status</th> + <th scope="col">Anmerkung</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('CSS3 Backgrounds', '#the-border-width', 'border-bottom-width') }}</td> + <td>{{ Spec2('CSS3 Backgrounds') }}</td> + <td>Keine Änderung</td> + </tr> + <tr> + <td>{{ SpecName('CSS2.1', 'box.html#border-width-properties', 'border-bottom-width') }}</td> + <td>{{ Spec2('CSS2.1') }}</td> + <td>Standardwert definiert</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_Compatibility" name="Browser_Compatibility">Browser Kompatibilität</h2> + +{{Compat("css.properties.border-bottom-width")}} + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li>{{Cssxref("border")}}, {{Cssxref("border-bottom")}}, {{Cssxref("border-bottom-style")}} und {{Cssxref("border-bottom-color")}}</li> + <li>{{Cssxref("border-left-width")}}, {{Cssxref("border-right-width")}}, {{Cssxref("border-top-width")}} und {{Cssxref("border-width")}}</li> +</ul> |