Grid

place-items

Learn how to use the CSS place-items property.

CSS place-items

The place-items property sets the place items for an HTML element.

Syntax

.element {
  place-items: center;
}

HTML Context Example

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

<style>
.card {
  place-items: center;
}
</style>

Notes

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