ant-design/components/space/demo/vertical.md
afc163 d207ba65b8
chore: update Space vertical demo (#34647)
* chore: update Space vertical demo

close #34609

* fix snapshot
2022-03-22 14:49:42 +08:00

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);
```