CSS Flexbox 版面生成器
透過即時預覽視覺化生成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;
}