2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 1
|
|
|
|
title: 区块间隔
|
|
|
|
---
|
2016-02-23 17:34:46 +08:00
|
|
|
|
2016-02-25 16:48:03 +08:00
|
|
|
栅格常常需要和间隔进行配合,你可以使用 `Row` 的 `gutter` 属性,我们推荐使用 `(16+8n)px` 作为栅格间隔。
|
2016-02-23 17:34:46 +08:00
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Row, Col } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div className="gutter-example">
|
|
|
|
<Row gutter={16}>
|
2016-03-10 09:41:51 +08:00
|
|
|
<Col className="gutter-row" span={6}>
|
2016-02-23 17:34:46 +08:00
|
|
|
<div className="gutter-box">.col-6</div>
|
|
|
|
</Col>
|
2016-03-10 09:41:51 +08:00
|
|
|
<Col className="gutter-row" span={6}>
|
2016-02-23 17:34:46 +08:00
|
|
|
<div className="gutter-box">.col-6</div>
|
|
|
|
</Col>
|
2016-03-10 09:41:51 +08:00
|
|
|
<Col className="gutter-row" span={6}>
|
2016-02-23 17:34:46 +08:00
|
|
|
<div className="gutter-box">.col-6</div>
|
|
|
|
</Col>
|
2016-03-10 09:41:51 +08:00
|
|
|
<Col className="gutter-row" span={6}>
|
2016-02-23 17:34:46 +08:00
|
|
|
<div className="gutter-box">.col-6</div>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</div>
|
|
|
|
, mountNode);
|
|
|
|
````
|
|
|
|
|
|
|
|
````css
|
|
|
|
.gutter-example .row > div {
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.gutter-box {
|
|
|
|
background: #2db7f5;
|
|
|
|
height: 80px;
|
|
|
|
line-height: 80px;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
````
|