Menu
Box Model & Layout

CSS Margins

Create spacing between elements.

1Spacing Out

Margins push other elements away.

Example Code
div {
  margin: 20px; /* All sides */
  margin-top: 50px;
  margin: 0 auto; /* Horizontally center */
}

Finished reading?

Mark this topic as complete to track progress.