blob: a41d823d526e37f69cb2c916007127a9a4e99244 (
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
|
---
title: padding-right
slug: Web/CSS/padding-right
tags:
- CSS
- CSS Referenz
translation_of: Web/CSS/padding-right
---
<p>{{ CSSRef() }}</p>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>padding-right</code> Eigenschaft legt den rechten Innenabstand eines Elementes fest. Der Innenabstand ist der Bereich zwischen dem Inhalt und dem <a href="/de/CSS/border" title="de/CSS/border">Rahmen</a> (auch: <em>padding area</em>).</p>
<ul>
<li>Standardwert: <code>0</code></li>
<li>Anwendbar auf: alle Elemente außer <code>table-*-group</code>, <code>table-row</code> und <code>table-column</code></li>
<li>Vererbbar: Nein</li>
<li>Prozentwerte: beziehen sich auf die <a href="/de/CSS/width" title="de/CSS/width">Breite</a> des umschließenden Blocks.</li>
<li>Medium: visuell</li>
<li>berechneter Wert: eine Prozentzahl wie festgelegt oder die absolute Länge.</li>
</ul>
<h2 id="Syntax">Syntax</h2>
<pre class="eval">padding-right: <Längenangabe> | <Prozentzahl> | inherit</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt>
<Längenangabe></dt>
<dd>
Legt eine bestimmte <a href="/de/CSS/Einheiten#L.c3.a4ngen" title="de/CSS/Einheiten#L.c3.a4ngen">Länge</a> fest. Negative Werte sind <strong>nicht</strong> erlaubt.</dd>
<dt>
<Prozentzahl></dt>
<dd>
Ein <a href="/de/CSS/Einheiten#Prozent" title="de/CSS/Einheiten#Prozent">prozentualer</a> Wert, der sich auf die Breite des umschließenden Blocks (containing block) bezieht. Negative Werte <strong>nicht</strong> sind erlaubt.</dd>
<dt>
inherit</dt>
<dd>
Der Wert des Elternelements wird geerbt.</dd>
</dl>
<h2 id="Beispiele">Beispiele</h2>
<pre>.content { padding-right: 5%; }
.sidebox { padding-right: 10px; }
</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>{{ spec("http://www.w3.org/TR/CSS21/box.html#padding-properties","CSS 2.1 Box: padding", "CR") }}</li>
</ul>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li><a href="/de/CSS/padding" title="de/CSS/padding"><code>padding</code></a>, <a href="/de/CSS/padding-top" title="de/CSS/padding-top"><code>padding-top</code></a>, <a href="/de/CSS/padding-bottom" title="de/CSS/padding-bottom"><code>padding-bottom</code></a>, <a href="/de/CSS/padding-left" title="de/CSS/padding-left"><code>padding-left</code></a></li>
<li><a href="/de/CSS/-moz-padding-start" title="de/CSS/-moz-padding-start"><code>-moz-padding-start</code></a>, <a href="/de/CSS/-moz-padding-end" title="de/CSS/-moz-paddding-end"><code>-moz-padding-end</code></a></li>
<li><a href="/de/CSS/margin" title="de/CSS/margin"><code>margin</code></a></li>
</ul>
<p>{{ languages( { "en": "en/CSS/padding-right", "ja": "ja/CSS/padding-right" } ) }}</p>
|