css margins.

Need a code snippet for your style sheet?

Below are four options for setting the top, bottom, left and right margins:

margin:10px 40px 25px 90px;

top margin is 10px
right margin is 40px
bottom margin is 25px
left margin is 90px

margin:10px 40px 25px;

top margin is 10px
right and left margins are 40px
bottom margin is 25px

margin:10px 40px;

top and bottom margins are 10px
right and left margins are 40px

margin:50px;

all four margins are 50px