mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
35 lines
606 B
Markdown
35 lines
606 B
Markdown
---
|
|
order: 3
|
|
title: 更灵活的内容展示
|
|
---
|
|
|
|
可以调整默认边距,设定宽度。
|
|
|
|
````jsx
|
|
import { Card } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Card style={{ width: 240 }} bodyStyle={{ padding: 0 }}>
|
|
<div className="custom-image">
|
|
<img width="100%" src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" />
|
|
</div>
|
|
<div className="custom-card">
|
|
<h3>欧美街拍</h3>
|
|
<p>www.instagram.com</p>
|
|
</div>
|
|
</Card>
|
|
, mountNode);
|
|
````
|
|
|
|
````css
|
|
.custom-image img {
|
|
display: block;
|
|
}
|
|
.custom-card {
|
|
padding: 10px 16px;
|
|
}
|
|
.custom-card p {
|
|
color: #999;
|
|
}
|
|
````
|