You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
637 B

---
order: 1
title:
zh-CN: 垂直间距
en-US: Vertical Space
---
## zh-CN
相邻组件垂直间距。
## en-US
Crowded components vertical spacing.
```jsx
import { Space, Card } from 'antd';
const App = () => (
<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 App;
```