mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
d207ba65b8
* chore: update Space vertical demo close #34609 * fix snapshot
40 lines
714 B
Markdown
40 lines
714 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 垂直间距
|
|
en-US: Vertical Space
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
相邻组件垂直间距。
|
|
|
|
## en-US
|
|
|
|
Crowded components vertical spacing.
|
|
|
|
```jsx
|
|
import { Space, Card } from 'antd';
|
|
|
|
function SpaceVertical() {
|
|
return (
|
|
<Space direction="vertical" size="middle" style={{ display: 'flex' }}>
|
|
<Card title="Card" size="small">
|
|
<p>Card content</p>
|
|
<p>Card content</p>
|
|
</Card>
|
|
<Card title="Card" size="small">
|
|
<p>Card content</p>
|
|
<p>Card content</p>
|
|
</Card>
|
|
<Card title="Card" size="small">
|
|
<p>Card content</p>
|
|
<p>Card content</p>
|
|
</Card>
|
|
</Space>
|
|
);
|
|
}
|
|
|
|
ReactDOM.render(<SpaceVertical />, mountNode);
|
|
```
|