CSS 플렉스박스 레이아웃 생성기
실시간 미리보기를 통해 CSS Flexbox 레이아웃을 시각적으로 생성합니다. flex-direction, justify-content, align-items 등을 무료로 클라이언트 측에서 조정하세요.
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
gap: 8px;
}
.item {
padding: 1rem 1.5rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.9rem;
min-width: 60px;
text-align: center;
}