--- title: padding-bottom slug: Web/CSS/padding-bottom tags: - CSS - CSS Padding - CSS Property - Reference translation_of: Web/CSS/padding-bottom ---
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.
{{cssinfo}}
.content { padding-bottom: 5%; } .sidebox { padding-bottom: 10px; }
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. |
{{Compat("css.properties.padding-bottom")}}
padding-bottom
en {{cssxref("padding-left")}}.