2018-03-09 05:26:34 +00:00
|
|
|
<cn>
|
|
|
|
#### 无边框
|
|
|
|
在灰色背景上使用无边框的卡片
|
|
|
|
</cn>
|
2018-04-06 12:56:19 +00:00
|
|
|
|
2018-03-09 05:26:34 +00:00
|
|
|
<us>
|
|
|
|
#### No border
|
|
|
|
A borderless card on a gray background.
|
|
|
|
</us>
|
|
|
|
|
2019-10-09 10:32:23 +00:00
|
|
|
```tpl
|
2018-03-09 05:26:34 +00:00
|
|
|
<template>
|
2019-09-28 12:45:07 +00:00
|
|
|
<div style="background:#ECECEC; padding:30px">
|
|
|
|
<a-card title="Card title" :bordered="false" style="width: 300px">
|
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
|
|
|
</a-card>
|
|
|
|
</div>
|
2018-03-09 05:26:34 +00:00
|
|
|
</template>
|
|
|
|
```
|