# 区块间隔
- order: 6
栅格常常需要和间隔进行配置,我们推荐使用 `(16+8n)px` 作为栅格间隔。
---
````jsx
import { Row, Col } from 'antd';
ReactDOM.render(
.col-6
.col-6
.col-6
.col-6
, mountNode);
````
````css
.gutter-example {
background: #f4f4f4;
}
.gutter-example .row > div {
background: transparent;
border: 0;
}
.gutter-box {
background: #2db7f5;
height: 80px;
line-height: 80px;
border-radius: 6px;
}
````