--- title: padding slug: Web/CSS/padding tags: - CSS - CSS Eigenschaft - CSS Innenabstand - CSS Referenz - Layout - Web translation_of: Web/CSS/padding ---
{{ CSSRef() }}
Die padding
Eigenschaft ist eine Kurzform für die Innenabstände aller vier Seiten eines Elementes. Der Innenabstand ist der Bereich zwischen dem Inhalt und dem Rahmen (auch: padding area).
{{cssinfo}}
padding: [ <Längenangabe> | <Prozentzahl> ] {1,4} | inherit
Es werden bis zu vier der folgenden Werte akzeptiert:
padding: 5%; /* 5% Abstand auf allen Seiten */ padding: 10px; /* 10px Abstand auf allen Seiten */ padding: 10px 20px; /* oben und unten 10px */ /* links und rechts 20px */ padding: 10px 3% 20px; /* oben 10px */ /* links und rechts 3% */ /* unten 20px */ padding: 1em 3px 30px 5px; /* oben 1em */ /* rechts 3px */ /* unten 30px */ /* links 5px */
border:outset; padding:5% 1em;
<h4>Hallo Welt!</h4>
<h3>Der Innenabstand ist in dieser Zeile anders.</h3>
h4 {
background-color: green;
padding: 50px 20px 20px 50px;
}
h3{
background-color: blue;
padding: 400px 50px 50px 400px;
}
{{ EmbedLiveSample('Livebeispiel') }}
Spezifikation | Status | Kommentar |
---|---|---|
{{ SpecName('CSS3 Box', '#the-padding', 'padding') }} | {{ Spec2('CSS3 Box') }} | keine Änderung |
{{ SpecName('CSS2.1', 'box.html#propdef-padding', 'padding-top') }} | {{ Spec2('CSS2.1') }} | keine Änderung |
{{ Specname('CSS1', '#padding', 'padding') }} | {{ Spec2('CSS1') }} | Ursprüngliche Definition |