Lesson 6 of 8
Flexbox
Flexbox is a layout system that makes it easy to align items horizontally or vertically. Set display: flex on a parent element, then use justify-content and align-items to position children.
CSS
.container {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
}