mitchute
24
Q:

css code for margin

p {
    margin: 25px 50px 75px 100px; /* Top, Right, Bottom, Left */
} 
23
/* Apply to all four sides */
margin: 1em;
margin: -3px;

/* vertical | horizontal */
margin: 5% auto;

/* top | horizontal | bottom */
margin: 1em auto 2em; 

/* top | right | bottom | left */
margin: 2px 1em 0 auto;

/* Global values */
margin: inherit;
margin: initial;
margin: unset;
20

p {
  margin-top: 100px;

  margin-bottom: 100px;

  margin-right: 150px;

  margin-left: 80px;
} 
3
body {
  margin: 0px;
}
0

New to Communities?

Join the community