636 B
636 B
title, tags, cover, firstSeen, lastUpdated
| title | tags | cover | firstSeen | lastUpdated |
|---|---|---|---|---|
| Grid centering | layout | blog_images/work-hard-computer.jpg | 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: gridto create a grid layout. - Use
justify-content: centerto center the child horizontally. - Use
align-items: centerto 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;
}