Grid布局在线学习工具
实时预览
1
2
3
4
5
6
属性控制
容器属性 (Container)
10px
项目属性 (Items)
容器尺寸
600px
400px
CSS代码
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 100px);
gap: 10px;
width: 600px;
height: 400px;
}