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.
|
|
|
---
|
|
|
|
order: 1
|
|
|
|
title:
|
|
|
|
zh-CN: 垂直间距
|
|
|
|
en-US: Vertical Space
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
相邻组件垂直间距。
|
|
|
|
|
|
|
|
可以设置 `width: 100%` 独占一行。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Crowded components vertical spacing.
|
|
|
|
|
|
|
|
Can set `width: 100%` to fill a row.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Space, Card } from 'antd';
|
|
|
|
|
|
|
|
function SpaceVertical() {
|
|
|
|
return (
|
|
|
|
<Space direction="vertical">
|
|
|
|
<Card title="Card" style={{ width: 300 }}>
|
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
|
|
|
</Card>
|
|
|
|
<Card title="Card" style={{ width: 300 }}>
|
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
|
|
|
</Card>
|
|
|
|
</Space>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(<SpaceVertical />, mountNode);
|
|
|
|
```
|