2020-03-22 11:38:02 +08:00
|
|
|
---
|
|
|
|
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 (
|
2022-03-22 14:49:42 +08:00
|
|
|
<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">
|
2020-03-22 11:38:02 +08:00
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
|
|
|
</Card>
|
2022-03-22 14:49:42 +08:00
|
|
|
<Card title="Card" size="small">
|
2020-03-22 11:38:02 +08:00
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
|
|
|
</Card>
|
|
|
|
</Space>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => <SpaceVertical />;
|
2020-03-22 11:38:02 +08:00
|
|
|
```
|