Flexbox

justify-content

Learn how to use the CSS justify-content property.

CSS justify-content

The justify-content property sets the justify content for an HTML element.

Syntax

.element {
  justify-content: center;
}

HTML Context Example

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

<style>
.card {
  justify-content: center;
}
</style>

Notes

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