aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/border-bottom-width/index.html
blob: 6f67816001686c994ffd3d3a436bfd740fd30e50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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>&lt;Länge&gt;</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>