ant-design/components/layout/demo/sort.md
2016-04-01 10:08:19 +08:00

23 lines
372 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
order: 3
title: 布局排序
---
列排序。
通过使用 `push``pull` 类就可以很容易的改变列column的顺序。
````jsx
import { Row, Col } from 'antd';
ReactDOM.render(
<div>
<Row>
<Col span={18} push={6}>.col-18 .col-push-6</Col>
<Col span={6} pull={18}>.col-6 .col-pull-18</Col>
</Row>
</div>,
mountNode
);
````