--- title: padding-bottom slug: Web/CSS/padding-bottom tags: - CSS - CSS Padding - CSS Property - Reference translation_of: Web/CSS/padding-bottom ---
{{CSSRef}}

De  CSS-eigenschap padding-bottom stelt de hoogte in van de vulling aan de onderkant van een element. Voor padding is het, in tegenstelling tot margins, niet toegestaan om negatieve waarden te gebruiken. De verkorte notatie voor {{cssxref("padding")}} kan worden gebruikt om binnen één declaratie de vulling aan alle vier de kanten in te stellen.

/* <length> values */
padding-bottom: 0.5em;
padding-bottom: 0;
padding-bottom: 2cm;

/* <percentage> value */
padding-bottom: 10%;

/* Global values */
padding-bottom: inherit;
padding-bottom: initial;
padding-bottom: unset;

De paddingruimte is de ruimte tussen de inhoud en de rand van een element.

The effect of the CSS padding-bottom property on the element box

{{cssinfo}}

Syntaxis

Waarden

{{cssxref("length")}}
De grootte van de padding als vaste waarde. Mag niet negatief zijn.
{{cssxref("percentage")}}
De grootte van de padding als een percentage, relatief aan de breedte van het element waarin het betreffende element staat. Mag niet negatief zijn.

Formele syntaxis

{{csssyntax}}

Voorbeelden

.content { padding-bottom: 5%; }
.sidebox { padding-bottom: 10px; }

Specificaties

Specificatie Status Opmerking
{{ SpecName('CSS3 Box', '#the-padding', 'padding-bottom') }} {{ Spec2('CSS3 Box') }} Geen verandering ten opzichte van {{ SpecName('CSS2.1', 'box.html#padding-properties', 'padding-bottom') }}.
{{ SpecName('CSS3 Transitions', '#animatable-css', 'padding-bottom') }} {{ Spec2('CSS3 Transitions') }} Definieert padding-bottom als animeerbaar.
{{ SpecName('CSS2.1', 'box.html#padding-properties', 'padding-bottom') }} {{ Spec2('CSS2.1') }} Geen verandering ten opzichte van {{ Specname('CSS1', '#padding-bottom', 'padding-bottom') }}.
{{ Specname('CSS1', '#padding-bottom', 'padding-bottom') }} {{ Spec2('CSS1') }} Aanvankelijke definitie.

Browsercompatibiliteit

{{Compat("css.properties.padding-bottom")}}

Zie ook