mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
40 lines
707 B
Markdown
40 lines
707 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>
|
|
);
|
|
}
|
|
|
|
export default () => <SpaceVertical />;
|
|
```
|