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

22 lines
388 B
Markdown
Raw Normal View History

2019-12-02 03:16:35 +08:00
# 尺寸
卡片有 `small`、`medium`、`large`、`huge` 尺寸。
```html
<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>
```
```css
.n-card {
margin-bottom: 12px;
}
```