Advertisement
whiteless

Untitled

Oct 4th, 2022
767
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | Source Code | 0 0
  1. margin: 5%;                 /* All sides: 5% margin */
  2.  
  3. margin: 10px;               /* All sides: 10px margin */
  4.  
  5. margin: 1.6em 20px;         /* top and bottom: 1.6em margin */
  6.                             /* left and right: 20px margin */
  7.  
  8. margin: 10px 3% -1em;       /* top:            10px margin */
  9.                             /* left and right: 3% margin   */
  10.                             /* bottom:         -1em margin */
  11.  
  12. margin: 10px 3px 30px 5px;  /* top:    10px margin */
  13.                             /* right:  3px margin  */
  14.                             /* bottom: 30px margin */
  15.                             /* left:   5px margin  */
  16.  
  17. margin: 2em auto;           /* top and bottom: 2em margin   */
  18.                             /* Box is horizontally centered */
  19.  
  20. margin: auto;               /* top and bottom: 0 margin     */
  21.                             /* Box is horizontally centered */
Tags: css3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement