ant-design/components/card/demo/in-column.md

55 lines
913 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-04-10 15:38:52 +08:00
order: 4
title:
zh-CN: 栅格卡片
en-US: Card in column
2016-03-31 09:40:55 +08:00
---
2016-02-20 16:40:18 +08:00
## zh-CN
2016-02-20 16:40:18 +08:00
在系统概览页面常常和栅格进行配合。
## en-US
Cards usually cooperate with grid column layout in overview page.
2019-05-07 14:57:32 +08:00
```jsx
2016-02-20 16:40:18 +08:00
import { Card, Col, Row } from 'antd';
ReactDOM.render(
2019-12-23 20:07:56 +08:00
<div className="site-card-wrapper">
2017-06-15 15:34:47 +08:00
<Row gutter={16}>
<Col span={8}>
2019-05-07 14:57:32 +08:00
<Card title="Card title" bordered={false}>
Card content
</Card>
2016-04-10 15:38:52 +08:00
</Col>
2017-06-15 15:34:47 +08:00
<Col span={8}>
2019-05-07 14:57:32 +08:00
<Card title="Card title" bordered={false}>
Card content
</Card>
2016-04-10 15:38:52 +08:00
</Col>
2017-06-15 15:34:47 +08:00
<Col span={8}>
2019-05-07 14:57:32 +08:00
<Card title="Card title" bordered={false}>
Card content
</Card>
2016-04-10 15:38:52 +08:00
</Col>
</Row>
2018-06-27 15:55:04 +08:00
</div>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```
2019-12-23 20:07:56 +08:00
```css
.site-card-wrapper {
background: #ececec;
padding: 30px;
}
```
<style>
[data-theme="dark"] .site-card-wrapper {
background: #303030;
}
</style>