# Card
Used to display product images, prices, and other information.
## Basic Usage
Set the title through the `title` property, and pass content through the default slot.
Supports setting `title` slot and `footer` slot.
```html
Generally, the disciplinary inspection committee or the party committee handling the report will meet with the complainant to discuss the handling opinions or review conclusions. A copy of the review conclusions and decisions should be given to the complainant.
View Details
```
## Rectangle Card
Set `type` to `rectangle`.
```html
Service expires on 2020-02-03
You can use this service on your computer
Smart Marketing
Premium Version - Quick Fan Growth | One Year Period
Rate
Use Now
```
```scss
.content,
.title {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.content {
justify-content: flex-start;
}
.title {
justify-content: space-between;
}
.title-tip {
color: rgba(0, 0, 0, 0.25);
font-size: 12px;
}
```
## Attributes
| Attribute | Description | Type | Options | Default | Version |
| --------- | ----------- | ---- | -------- | ------- | ------- |
| title | Card title | string | - | - | - |
| type | Card type | string | rectangle | - | - |
## Slot
| name | Description | Version |
| ---- | ----------- | ------- |
| default | Card content | - |
| title | Card title | - |
| footer | Footer operation content | - |
## External Classes
| Class Name | Description | Version |
| ---------- | ----------- | ------- |
| custom-class | Root node custom style | - |
| custom-title-class | Title custom style | - |
| custom-content-class | Content custom style | - |
| custom-footer-class | Footer custom style | - |