naive-ui/demo/documentation/components/card/zhCN/size.demo.md

18 lines
395 B
Markdown
Raw Normal View History

2019-12-02 03:16:35 +08:00
# 尺寸
卡片有 `small`、`medium`、`large`、`huge` 尺寸。
```html
2020-10-26 12:31:14 +08:00
<n-space vertical>
2020-10-21 22:59:32 +08:00
<n-card title="小卡片" size="small">
卡片内容
</n-card>
<n-card title="中卡片" size="medium">
卡片内容
</n-card>
<n-card title="大卡片" size="large">
卡片内容
</n-card>
<n-card title="超大卡片" size="huge">
卡片内容
</n-card>
</n-space>
```