--- title: Grid centering tags: layout expertise: beginner cover: blog_images/work-hard-computer.jpg firstSeen: 2018-03-03T12:13:59+02:00 lastUpdated: 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. ```html
Centered content.
``` ```css .grid-centering { display: grid; justify-content: center; align-items: center; height: 100px; } ```