ant-design/components/layout/demo/offset.md

30 lines
624 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title: 左右偏移
---
2015-06-09 21:20:15 +08:00
2015-06-15 17:46:42 +08:00
列偏移。
2015-06-09 21:20:15 +08:00
2016-02-25 14:15:37 +08:00
使用 `offset` 可以将列向右侧偏。例如,`offset={4}` 将元素向右侧偏移了 4 个列column的宽度。
2015-06-09 21:20:15 +08:00
2015-10-27 23:52:17 +08:00
````jsx
import { Row, Col } from 'antd';
2015-10-27 23:52:17 +08:00
ReactDOM.render(
<div>
<Row>
2016-06-06 11:40:54 +08:00
<Col span={8}>.ant-col-8</Col>
<Col span={8} offset={8}>.ant-col-8</Col>
2015-10-27 23:52:17 +08:00
</Row>
<Row>
2016-06-06 11:40:54 +08:00
<Col span={6} offset={6}>.ant-col-6 .ant-col-offset-6</Col>
<Col span={6} offset={6}>.ant-col-6 .ant-col-offset-6</Col>
2015-10-27 23:52:17 +08:00
</Row>
<Row>
2016-06-06 11:40:54 +08:00
<Col span={12} offset={6}>.ant-col-12 .ant-col-offset-6</Col>
2015-10-27 23:52:17 +08:00
</Row>
</div>,
mountNode
2015-10-27 23:52:17 +08:00
);
2015-06-09 21:20:15 +08:00
````