通过拖放可视化生成 CSS 网格布局代码。
.grid-container { display: grid; grid-template-rows: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr); gap: 16px; }