--- order: 1 title: zh-CN: 区块间隔 en-US: Block Interval --- ## zh-CN 栅格常常需要和间隔进行配合,你可以使用 `Row` 的 `gutter` 属性,我们推荐使用 `(16+8n)px` 作为栅格间隔。 ## en-US Raster intervals and often need to cooperate, you can use the `gutter`` Row` property, we recommend using `(16 + 8n) px` as grid spacing. ````jsx import { Row, Col } from 'antd'; ReactDOM.render(
.ant-col-6
.ant-col-6
.ant-col-6
.ant-col-6
, mountNode); ```` ````css .gutter-example .ant-row > div { background: transparent; border: 0; } .gutter-box { background: #2db7f5; height: 80px; line-height: 80px; border-radius: 6px; } ````