02-14-2011, 03:51 AM
|
#19
|
Guru
Posts: 657
Karma: 64171
Join Date: Sep 2010
Location: Kent, England, Sol 3, ZZ9 plural Z Alpha
Device: Sony PRS-300, Kobo Aura HD, iPad (Marvin)
|
From http://www.w3schools.com/css/css_margin.asp
Quote:
The margin property can have from one to four values.
* margin:25px 50px 75px 100px;
o top margin is 25px
o right margin is 50px
o bottom margin is 75px
o left margin is 100px
* margin:25px 50px 75px;
o top margin is 25px
o right and left margins are 50px
o bottom margin is 75px
* margin:25px 50px;
o top and bottom margins are 25px
o right and left margins are 50px
* margin:25px;
o all four margins are 25px
|
|
|
|