blob: b740149b3c84aa2ae1bfa4d996540966d398df7f (
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
89
90
|
---
title: border-top-width
slug: Web/CSS/Border-top-width
tags:
- CSS
- CSS Referenz
translation_of: Web/CSS/border-top-width
---
<p>{{ CSSRef() }}</p>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>border-top-width</code> Eigenschaft legt die Breite des oberen Rahmens fest.</p>
<ul>
<li>Standardwert: <code>medium</code></li>
<li>Anwendbar auf: Alle Elemente</li>
<li>Vererbbar: Nein</li>
<li>Prozentwerte: Nein</li>
<li>Medium: visuell</li>
<li>berechneter Wert: absolute Länge; <code>0</code> wenn <code>none</code> oder <code>hidden</code> festgelegt wurde</li>
</ul>
<h2 id="Syntax">Syntax</h2>
<pre class="eval">border-top-width: <Länge> | thin | medium | thick | inherit
</pre>
<h2 id="Werte">Werte</h2>
<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-top-width: 10px;
}
.beispielZwei {
border-top-width: thin;
}
</pre>
<h2 id="Browser_Kompatibilität">Browser <span>Kompatibilität</span></h2>
<table class="standard-table">
<tbody>
<tr>
<th>Browser</th>
<th>ab Version</th>
</tr>
<tr>
<td>Internet Explorer</td>
<td>4.0</td>
</tr>
<tr>
<td>Firefox (Gecko)</td>
<td>1.0 (1.0)</td>
</tr>
<tr>
<td>Opera</td>
<td>3.5</td>
</tr>
<tr>
<td>Safari (WebKit)</td>
<td>1.0 (85)</td>
</tr>
</tbody>
</table>
<h2 id="Spezifikation">Spezifikation</h2>
<ul>
<li><a class="external" href="http://www.w3.org/TR/css3-background/#border-top-width" lang="en">CSS 3 Background and Borders #border-top-width</a></li>
<li><a class="external" href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top-width" lang="en">CSS 2.1 Box #border-top-width</a></li>
</ul>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li><a href="/de/CSS/border-top" title="de/CSS/border-top"><code>border-top</code></a>, <a href="/de/CSS/border-top-color" title="de/CSS/border-top-color"><code>border-top-color</code></a>, <a href="/de/CSS/border-top-style" title="de/CSS/border-top-style"><code>border-top-style</code></a></li>
<li><a href="/de/CSS/border-width" title="de/CSS/border-width"><code>border-width</code></a>, <a href="/De/CSS/Border-bottom-width" title="De/CSS/Border-bottom-width"><code>border-bottom-width</code></a>, <a href="/De/CSS/Border-left-width" title="De/CSS/Border-left-width"><code>border-left-width</code></a>, <a href="/De/CSS/Border-right-width" title="De/CSS/Border-right-width"><code>border-right-width</code></a></li>
</ul>
<p>{{ languages( { "en": "en/CSS/border-top-width", "fr": "fr/CSS/border-top-width", "ja": "ja/CSS/border-top-width", "pl": "pl/CSS/border-top-width" } ) }}</p>
|