margin

Previous- margin-bottom  |  Next-padding-top

Description

The margin property sets the margins of an element. If four values are given, they apply to top, right, bottom, and left margin, respectively.

If one value is given, it applies to all sides. If two or three values are given, the missing values are taken from the opposite side.


Initial Value : not defined

Applies to : all elements

Inherited : no

Possible Values
[ <length> | <percentage> | auto | inherit ]{1,4}

Example(s)
body { margin: 1em 2em 3em } /* top=1em, right=2em, bottom=3em, left=2em */
body { margin: 2em }         /* all margins set to 2em */

Previous- margin-bottom  |  Next-padding-top