margin-bottom property CSS Reference



Definition and Usage

The margin-bottom CSS property of an element sets the margin space required on the bottom of an element. A negative value is also allowed.

This property has no effect on non-replaced inline elements, like <tt> or <span>.

  • Initial 0
  • Applies to all elements except elements with table display types other than table-caption, table and inline-table
  • Inherited no
  • Percentages refer to the width of the containing block
  • Media visual
  • Computed Value the percentage as specified or the absolute length
  • Animatable yes, as a length
  • Canonical order the unique non-ambiguous order defined by the formal grammar

Syntax

Formal syntax: <length> | <percentage> | auto
margin-bottom: 10px;        /* An absolute length */
margin-bottom: 1em;         /* A length relative to the text size */
margin-bottom: 5%;          /* A margin relative to the nearest block container's width */
margin-bottom: auto;
margin-bottom: inherit;

Values

<length>
Specifies a fixed width. See <length> for possible values.
<percentage>
A <percentage> always relative to the width of the containing block.
auto
See margin.

Examples

.content { margin-bottom:   5%; }
.sidebox { margin-bottom: 10px; }
.logo    { margin-bottom: -5px; }
#header  { margin-bottom:  1em; }

Compatibility

Desktop browsers

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support1.01.0 (1.7 or earlier)3.03.51.0 (85)
auto value1.01.0 (1.7 or earlier)6.0 (strict mode)3.51.0 (85)

Mobile browsers

FeatureAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basic support1.01.0 (1)6.06.01.0

Relative articles