You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: 更灵活的内容展示
|
|
|
|
en-US: Customized content
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
可以调整默认边距,设定宽度。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Customizing default width and margin.
|
|
|
|
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Card } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Card style={{ width: 240 }} bodyStyle={{ padding: 0 }}>
|
|
|
|
<div className="custom-image">
|
|
|
|
<img alt="example" width="100%" src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" />
|
|
|
|
</div>
|
|
|
|
<div className="custom-card">
|
|
|
|
<h3>Europe Street beat</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;
|
|
|
|
}
|
|
|
|
````
|