You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
483 B

---
order: 3
8 years ago
title:
zh-CN: 栅格排序
en-US: Grid sort
---
## zh-CN
列排序。
通过使用 `push``pull` 类就可以很容易的改变列(column)的顺序。
## en-US
By using `push` and`pull` class you can easily change column order.
```jsx
import { Row, Col } from 'antd';
ReactDOM.render(
<Row>
<Col span={18} push={6}>
col-18 col-push-6
</Col>
<Col span={6} pull={18}>
col-6 col-pull-18
</Col>
</Row>,
mountNode,
);
```