Files
30-seconds-of-code/snippets/grid-centering.md
Isabelle Viktoria Maciohsek 2487083cf1 Bake dates into snippets
2021-06-13 19:41:39 +03:00

603 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
Grid centering layout,beginner 2018-03-03T12:13:59+02:00 2020-12-30T15:37:37+02:00

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

  • Use display: grid to create a grid layout.
  • Use justify-content: center to center the child horizontally.
  • Use align-items: center to center the child vertically.
<div class="grid-centering">
  <div class="child">Centered content.</div>
</div>
.grid-centering {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100px;
}