--- title: padding-bottom slug: Web/CSS/padding-bottom tags: - CSS - CSS 内边距 - CSS 属性 translation_of: Web/CSS/padding-bottom ---
CSS属性 padding-bottom 是指一个元素在内边距区域(padding area)中下方的高度。内边距(padding)是指一个元素的内容和边框之间的区域。和外边距(margin)不同,内边距(padding)是不允许有负值的。内边距(padding)可以用四个值声明一个元素的四个方向的内边距(paddings),这是一种CSS缩写属性。
/* <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;
{{cssinfo}}
.content { padding-bottom: 5%; } .sidebox { padding-bottom: 10px; }
Specification | Status | Comment |
---|---|---|
{{ SpecName('CSS3 Box', '#the-padding', 'padding-bottom') }} | {{ Spec2('CSS3 Box') }} | No change from {{ SpecName('CSS2.1', 'box.html#padding-properties', 'padding-bottom') }}. |
{{ SpecName('CSS3 Transitions', '#animatable-css', 'padding-bottom') }} | {{ Spec2('CSS3 Transitions') }} | Defines padding-bottom as animatable. |
{{ SpecName('CSS2.1', 'box.html#padding-properties', 'padding-bottom') }} | {{ Spec2('CSS2.1') }} | No change from {{ Specname('CSS1', '#padding-bottom', 'padding-bottom') }}. |
{{ Specname('CSS1', '#padding-bottom', 'padding-bottom') }} | {{ Spec2('CSS1') }} | Initial definition. |
{{CompatibilityTable}}
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 1.0 | {{CompatVersionUnknown}} | 1.0 (1.0) | 4.0 | 3.5 | 1.0 (85) |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | {{ CompatUnknown() }} | {{CompatVersionUnknown}} | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} |
padding-bottom
, and {{cssxref("padding-left")}}.