Box Model

margin

Learn how to use the CSS margin property.

CSS margin

The margin property sets the margin for an HTML element.

Syntax

.element {
  margin: 1rem;
}

HTML Context Example

<div class="card">
  This is a styled element.
</div>

<style>
.card {
  margin: 1rem;
}
</style>

Notes

Experiment in the CSS playground to see how this affects layout and styling.