📦 CSS Flexbox 生成器
可视化生成 Flexbox 布局代码
实时预览:
1
2
3
4
10px
4
生成的 CSS 代码:
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
gap: 10px;
}可视化生成 Flexbox 布局代码
.container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
gap: 10px;
}