ant-design/components/grid/demo/flex-align.md

86 lines
1.8 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 5
title:
zh-CN: 对齐
en-US: Alignment
2016-03-31 09:40:55 +08:00
---
2015-06-09 22:19:35 +08:00
## zh-CN
子元素垂直对齐。
2015-06-09 22:19:35 +08:00
## en-US
Child elements vertically aligned.
2019-05-07 14:57:32 +08:00
```jsx
import { Row, Col, Divider } from 'antd';
2015-10-27 23:52:17 +08:00
2016-04-10 15:39:24 +08:00
const DemoBox = props => <p className={`height-${props.value}`}>{props.children}</p>;
2015-10-27 23:52:17 +08:00
ReactDOM.render(
<>
<Divider orientation="left" style={{ color: '#333', fontWeight: 'normal' }}>
Align Top
</Divider>
<Row justify="center" align="top">
2019-05-07 14:57:32 +08:00
<Col span={4}>
<DemoBox value={100}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={50}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={120}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={80}>col-4</DemoBox>
</Col>
2015-10-27 23:52:17 +08:00
</Row>
<Divider orientation="left" style={{ color: '#333', fontWeight: 'normal' }}>
Align Middle
</Divider>
<Row justify="space-around" align="middle">
2019-05-07 14:57:32 +08:00
<Col span={4}>
<DemoBox value={100}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={50}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={120}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={80}>col-4</DemoBox>
</Col>
2015-10-27 23:52:17 +08:00
</Row>
<Divider orientation="left" style={{ color: '#333', fontWeight: 'normal' }}>
Align Bottom
</Divider>
<Row justify="space-between" align="bottom">
2019-05-07 14:57:32 +08:00
<Col span={4}>
<DemoBox value={100}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={50}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={120}>col-4</DemoBox>
</Col>
<Col span={4}>
<DemoBox value={80}>col-4</DemoBox>
</Col>
2015-10-27 23:52:17 +08:00
</Row>
</>,
2019-05-07 14:57:32 +08:00
mountNode,
2015-10-27 23:52:17 +08:00
);
2019-05-07 14:57:32 +08:00
```
```css
#components-grid-demo-flex-align [class~='ant-row'] {
2019-12-23 14:49:45 +08:00
background: rgba(128, 128, 128, 0.08);
}
```