mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-25 12:45:52 +10:00
509 B
509 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 3 |
|
zh-CN
列排序。
通过使用 push 和 pull 类就可以很容易的改变列(column)的顺序。
en-US
By using push and pull class you can easily change column order.
import { Row, Col } from 'antd';
ReactDOM.render(
<div>
<Row>
<Col span={18} push={6}>.ant-col-18 .ant-col-push-6</Col>
<Col span={6} pull={18}>.ant-col-6 .ant-col-pull-18</Col>
</Row>
</div>,
mountNode
);