Flex布局在线学习工具
实时预览
1
2
3
属性控制
容器属性 (Container)
10px
项目属性 (Items)
容器尺寸
600px
400px
生成的CSS代码
.flex-container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
gap: 10px;
width: 600px;
height: 400px;
}