mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-13 14:56:27 +10:00
486 B
486 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}>col-18 col-push-6</Col>
<Col span={6} pull={18}>col-6 col-pull-18</Col>
</Row>
</div>,
mountNode
);