mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
66 lines
1.6 KiB
Markdown
66 lines
1.6 KiB
Markdown
---
|
|
order: 4
|
|
title:
|
|
zh-CN: Flex 布局
|
|
en-US: Flex Layout
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
Flex 布局基础。
|
|
|
|
使用 `row-flex` 定义 `flex` 布局,其子元素根据不同的值 `start`,`center`,`end`,`space-between`,`space-around`,分别定义其在父节点里面的排版方式。
|
|
|
|
## en-US
|
|
|
|
Use `row-flex` define` flex` layout, its child elements depending on the value of the `start`,` center`, `end`,` space-between`, `space-around`, which are defined in its parent node layout mode.
|
|
|
|
````jsx
|
|
import { Row, Col } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<p>sub-element align left</p>
|
|
<Row type="flex" justify="start">
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
</Row>
|
|
|
|
<p>sub-element align center</p>
|
|
<Row type="flex" justify="center">
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
</Row>
|
|
|
|
<p>sub-element align right</p>
|
|
<Row type="flex" justify="end">
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
</Row>
|
|
|
|
<p>sub-element monospaced arrangement</p>
|
|
<Row type="flex" justify="space-between">
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
</Row>
|
|
|
|
<p>sub-element align full</p>
|
|
<Row type="flex" justify="space-around">
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
<Col span={4}>col-4</Col>
|
|
</Row>
|
|
</div>,
|
|
mountNode
|
|
);
|
|
````
|