Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 599 Bytes

grid-centering.md

File metadata and controls

34 lines (23 loc) · 599 Bytes

Grid centering

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

HTML

<div class="grid-centering"><div class="child">Centered content.</div></div>

CSS

.grid-centering {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100px;
}

Demo

Explanation

  1. display: grid enables grid.
  2. justify-content: center centers the child horizontally.
  3. align-items: center centers the child vertically.

Browser support