diff options
Diffstat (limited to 'files/de/web/css/border-top-width/index.html')
-rw-r--r-- | files/de/web/css/border-top-width/index.html | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/files/de/web/css/border-top-width/index.html b/files/de/web/css/border-top-width/index.html new file mode 100644 index 0000000000..b740149b3c --- /dev/null +++ b/files/de/web/css/border-top-width/index.html @@ -0,0 +1,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> |