649 B
649 B
title, tags, expertise, cover, firstSeen, lastUpdated
| title | tags | expertise | cover | firstSeen | lastUpdated |
|---|---|---|---|---|---|
| Flexbox centering | layout | beginner | blog_images/basket-paper.jpg | 2018-03-03T11:57:27+02:00 | 2020-12-30T15:37:37+02:00 |
Horizontally and vertically centers a child element within a parent element using flexbox.
- Use
display: flexto create a flexbox layout. - Use
justify-content: centerto center the child horizontally. - Use
align-items: centerto center the child vertically.
<div class="flexbox-centering">
<div>Centered content.</div>
</div>
.flexbox-centering {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
}