--- order: 10 title: zh-CN: 栅格配置器 en-US: Playground --- ## zh-CN 可以简单配置几种等分栅格和间距。 ## en-US A simple playground for column count and gutter. ```tsx import { Col, Row, Slider } from 'antd'; import React, { useState } from 'react'; const gutters: Record = {}; const vgutters: Record = {}; const colCounts: Record = {}; [8, 16, 24, 32, 40, 48].forEach((value, i) => { gutters[i] = value; }); [8, 16, 24, 32, 40, 48].forEach((value, i) => { vgutters[i] = value; }); [2, 3, 4, 6, 8, 12].forEach((value, i) => { colCounts[i] = value; }); const App: React.FC = () => { const [gutterKey, setGutterKey] = useState(1); const [vgutterKey, setVgutterKey] = useState(1); const [colCountKey, setColCountKey] = useState(2); const cols = []; const colCount = colCounts[colCountKey]; let colCode = ''; for (let i = 0; i < colCount; i++) { cols.push(
Column
, ); colCode += ` \n`; } return ( <> Horizontal Gutter (px):
value && gutters[value] }} />
Vertical Gutter (px):
value && vgutters[value] }} />
Column Count:
value && colCounts[value] }} />
{cols} {cols} Another Row: {cols}
{`\n${colCode}\n${colCode}`}
{`\n${colCode}`}
); }; export default App; ``` ```css #components-grid-demo-playground [class~='ant-col'] { background: transparent; border: 0; } #components-grid-demo-playground [class~='ant-col'] > div { height: 120px; font-size: 14px; line-height: 120px; background: #0092ff; border-radius: 4px; } #components-grid-demo-playground pre { padding: 8px 16px; font-size: 13px; background: #f9f9f9; border-radius: 6px; } #components-grid-demo-playground pre.demo-code { direction: ltr; } #components-grid-demo-playground .ant-col { padding: 0; } ```