Files
30-seconds-of-code/snippets/grid-centering.md
Angelos Chalaris d2c10f3e65 Deprecate browser support
Bump integration tools to 2.1.0
2020-04-29 13:47:57 +03:00

526 B

title, tags
title tags
Grid centering layout,beginner

Horizontally and vertically centers a child element within a parent element using grid.

<div class="grid-centering">
  <div class="child">Centered content.</div>
</div>
.grid-centering {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100px;
}

Explanation

  • display: grid creates a grid layout
  • justify-content: center centers the child horizontally.
  • align-items: center centers the child vertically.