ant-design/components/card/demo/border-less.md

43 lines
654 B
Markdown
Raw Normal View History

2016-04-10 15:38:52 +08:00
---
order: 1
title:
zh-CN: 无边框
en-US: No border
2016-04-10 15:38:52 +08:00
---
## zh-CN
2016-04-10 15:38:52 +08:00
在灰色背景上使用无边框的卡片。
## en-US
A borderless card on a gray background.
2019-05-07 14:57:32 +08:00
```jsx
2016-04-10 15:38:52 +08:00
import { Card } from 'antd';
ReactDOM.render(
2019-12-23 20:07:56 +08:00
<div className="site-card-border-less-wrapper">
<Card title="Card title" bordered={false} style={{ width: 300 }}>
<p>Card content</p>
<p>Card content</p>
<p>Card content</p>
2016-04-10 15:38:52 +08:00
</Card>
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-border-less-wrapper {
padding: 30px;
background: #ececec;
2019-12-23 20:07:56 +08:00
}
```
<style>
[data-theme="dark"] .site-card-border-less-wrapper {
background: #303030;
}
</style>