ant-design/components/card/demo/basic.md

42 lines
812 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 典型卡片
en-US: Basic card
2016-03-31 09:40:55 +08:00
---
2016-02-19 19:35:49 +08:00
## zh-CN
2016-02-19 19:35:49 +08:00
包含标题、内容、操作区域。
## en-US
2019-05-07 14:57:32 +08:00
A basic card containing a title, content and an extra corner content. Supports two sizes: `default` and `small`.
```jsx
2016-02-19 19:35:49 +08:00
import { Card } from 'antd';
2016-02-20 16:40:18 +08:00
ReactDOM.render(
<>
2019-05-07 14:57:32 +08:00
<Card title="Default size card" extra={<a href="#">More</a>} style={{ width: 300 }}>
<p>Card content</p>
<p>Card content</p>
<p>Card content</p>
</Card>
2019-05-07 14:57:32 +08:00
<Card size="small" title="Small size card" extra={<a href="#">More</a>} style={{ width: 300 }}>
<p>Card content</p>
<p>Card content</p>
<p>Card content</p>
</Card>
</>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
```
<style>
.code-box-demo p {
margin: 0;
}
#components-card-demo-basic .ant-card { margin-bottom: 30px; }
</style>