Flexbox 속성을 대화형으로 학습하세요. justify-content, align-items, flex-direction 등을 실시간으로 실험해보세요.
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
gap: 16px;
}