MARGIN Property In CSS
margin Property in CSS
margin property Shorthand property used to declare all the margin properties at once.
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): margin-top margin-right margin-bottom margin-left
Examplediv { margin:5px 12px 4px 7px; }
div { margin:5px; }
div { margin:5px 10px; }
div { margin:5px 7px 4px; }