blob: 4a7841bc7794f5f11a8580946d95e30e00c5ed6a (
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
83
84
85
86
87
88
|
---
title: border-bottom
slug: Web/CSS/border-bottom
tags:
- CSS
- CSS Eigenschaft
- CSS Rahmen
- Referenz
translation_of: Web/CSS/border-bottom
---
<p>{{ CSSRef("CSS Borders") }}</p>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>border-bottom</code> Eigenschaft legt den unteren Rahmen eines Elementes fest und ist eine Kurzform für<br>
<a href="/de/CSS/border-bottom-color" title="de/CSS/border-bottom-color"><code>border-bottom-color</code></a>, <a href="/de/CSS/border-bottom-style" title="de/CSS/border-bottom-style"><code>border-bottom-style</code></a> und <a href="/De/CSS/Border-bottom-width" title="De/CSS/Border-bottom-width"><code>border-bottom-width</code></a>. Die Werte der drei Eigenschaften können in beliebiger Reihenfolge angegeben werden.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax">Syntax</h2>
{{csssyntax}}
<h3 id="Werte">Werte</h3>
<dl>
<dt><Rahmenbreite></dt>
<dd>Optional. Wenn nichts festgelegt ist, wird <code>medium</code> verwendet. Siehe: <a href="/De/CSS/Border-bottom-width" title="De/CSS/Border-bottom-width"><code>border-bottom-width</code></a>.</dd>
<dt><Rahmenstil></dt>
<dd>Erforderlich. Wenn nichts festgelegt ist, wird <code>none</code> verwendet. Siehe: <a href="/de/CSS/border-bottom-style" title="de/CSS/border-bottom-style"><code>border-bottom-style</code></a>.</dd>
<dt><Rahmenfarbe></dt>
<dd>Optional. Wenn nichts festgelegt ist, wird der Wert der <code>color</code> Eigenschaft des Elements genommen. Siehe: <a href="/de/CSS/border-bottom-color" title="de/CSS/border-bottom-color"><code>border-bottom-color</code></a>.</dd>
<dt>inherit</dt>
<dd>Der Wert des Elternelements wird geerbt.</dd>
</dl>
<h2 id="Beispiele">Beispiele</h2>
<pre>.beispielEins {
border-bottom: 1px solid #000;
}
.beispielZwei {
border-bottom-style: dotted;
border-bottom: thick green;
/* Bedeutet das gleiche wie: */
border-bottom-style: dotted;
border-bottom: none thick green;
/* border-bottom-style wird nach Angabe von border-bottom ignoriert.
Es wird kein unterer Rahmen gezeichnet. */
}
</pre>
<h2 id="Spezifikation">Spezifikation</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('CSS3 Backgrounds', '#border-bottom', 'border-bottom') }}</td>
<td>{{ Spec2('CSS3 Backgrounds') }}</td>
<td>No direct changes, though the modification of values for the {{ cssxref("border-bottom-color") }} do apply to it.</td>
</tr>
<tr>
<td>{{ SpecName('CSS2.1', 'box.html#propdef-border-bottom', 'border-bottom') }}</td>
<td>{{ Spec2('CSS2.1') }}</td>
<td>No significant changes</td>
</tr>
<tr>
<td>{{ SpecName('CSS1', '#border-bottom', 'border-bottom') }}</td>
<td>{{ Spec2('CSS1') }}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
{{Compat("css.properties.border-bottom")}}
|