2.27.0
Cards provide a set of content which acts as an entry point to more detailed information.
That combination of options is invalid.
Cards can be configured in a variety of ways to accomplish their intended goal. Implementing teams are encouraged to use the particular set of elements which best serve their use case.
Name
|
Required
|
Description
|
---|---|---|
Title |
Yes |
Briefly summarizes card content. |
Caption |
No |
Provides additional text to clarify or establish the card content. This element should not contain multiple paragraphs or links. |
Supplemental Content |
No |
Displays content such as images, Data Tables, or Charts. |
Action |
No |
Displays a single interactive UI component such as a Button or a Link. |
Label |
No |
Classifies the card to show its relationship to similar sets of information. |
Metadata |
No |
Provides additional information which helps a user gain a clear picture of the card’s content. |
Use when the textual content should be the initial focal point for a user’s attention.
<div class="mds-card">
<div class="mds-card__label">
<div class="mds-card__label-title">Funds</div>
</div>
<h2 class="mds-card__title">
Core Bond Funds
</h2>
<div class="mds-card__caption">These intermediate-term taxable-bond funds earn Morningstar Analyst Ratings of Gold.</div>
<div class="mds-card__supplemental-content">
<img src="/images/components/cards/[email protected]">
</div>
<div class="mds-card__action">
<button class="mds-button mds-button" type="button">
See Full List
</button>
</div>
</div>
<mds-card title="Core Bond Funds" label="Funds" caption="These intermediate-term taxable-bond funds earn Morningstar Analyst Ratings of Gold.">
<img slot="mds-card-supplemental-content" src="/images/components/cards/[email protected]">
<mds-button slot="mds-card-action" variation="secondary">See Full List</mds-button>
</mds-card>
Use when the supplemental content should be the initial focal point for a user’s attention.
<div class="mds-card">
<div class="mds-card__supplemental-content">
<img src="/images/components/cards/[email protected]">
</div>
<h2 class="mds-card__title">
U.S. Index Funds
</h2>
<div class="mds-card__caption">Topnotch passive funds for the core of your domestic portfolio.</div>
<div class="mds-card__action">
<button class="mds-button mds-button" type="button">
See Full List
</button>
</div>
</div>
<mds-card title="U.S. Index Funds" caption="Topnotch passive funds for the core of your domestic portfolio." supplemental-content-first>
<img slot="mds-card-supplemental-content" src="/images/components/cards/[email protected]">
<mds-button slot="mds-card-action" variation="secondary">See Full List</mds-button>
</mds-card>
Use for content which is most appropriately served by using the full width of the card, i.e., an image.
<div class="mds-card mds-card--full-bleed">
<div class="mds-card__label">
<div class="mds-card__label-title">Best Investments</div>
</div>
<h2 class="mds-card__title">
Core Bond Funds
</h2>
<div class="mds-card__caption">These intermediate-term taxable-bond funds earn Morningstar Analyst Ratings of Gold.</div>
<div class="mds-card__supplemental-content">
<img src="/images/components/cards/[email protected]">
</div>
<div class="mds-card__action">
<button class="mds-button mds-button" type="button">
See Full List
</button>
</div>
</div>
<mds-card title="Core Bond Funds" caption="These intermediate-term taxable-bond funds earn Morningstar Analyst Ratings of Gold." label="Best Investments" full-bleed>
<img slot="mds-card-supplemental-content" src="/images/components/cards/[email protected]">
<mds-button slot="mds-card-action" variation="secondary">See Full List</mds-button>
</mds-card>
mds-card--full-bleed-top-label-overlap
to mds-card
, ensuring that the label will overlap the supplemental content.Use when the card does not contain an action element and the whole card should act as a link.
<a class="mds-card mds-card--full-bleed" href="#">
<div class="mds-card__label">
<div class="mds-card__label-title">Best Investments</div>
</div>
<h2 class="mds-card__title">
Core Bond Funds
</h2>
<div class="mds-card__caption">These intermediate-term taxable-bond funds earn Morningstar Analyst Ratings of Gold.</div>
<div class="mds-card__supplemental-content">
<img src="/images/components/cards/[email protected]">
</div>
</a>
<mds-card title="Core Bond Funds" label="Best Investments" caption="These intermediate-term taxable-bond funds earn Morningstar Analyst Ratings of Gold." href="#" full-bleed>
<img slot="mds-card-supplemental-content" src="/images/components/cards/[email protected]">
</mds-card>
Sizing affects text size and internal padding. The default size is medium, and you can use modifier classes or props to make the card smaller or larger.
<div class="mds-card mds-card--small mds-card--full-bleed">
<div class="mds-card__label">
<div class="mds-card__label-title">Best Investments</div>
</div>
<h2 class="mds-card__title">
High-Yield Bonds
</h2>
<div class="mds-card__caption">Morningstar fund analysts’ favorites in this riskier area of the fixed-income market.</div>
<div class="mds-card__supplemental-content">
<img src="/images/components/cards/[email protected]">
</div>
<div class="mds-card__action">
<button class="mds-button mds-button--small" type="button">
See Full List
</button>
</div>
<div class="mds-card__metadata">10 Funds in List</div>
</div>
<mds-card size="small" title="High-Yield Bonds" label="Best Investments" caption="Morningstar fund analysts’ favorites in this riskier area of the fixed-income market." metadata="10 Funds in List" full-bleed>
<img slot="mds-card-supplemental-content" src="/images/components/cards/[email protected]">
<mds-button slot="mds-card-action" size="small" variation="secondary">See Full List</mds-button>
</mds-card>
Class
|
Applies to
|
Outcome
|
---|---|---|
|
|
Adjusts styling to render a small card. |
|
|
Adjusts styling to render a large card. |
|
|
Removes padding on |
|
|
Changes display property of |
When setting props as attributes on a custom HTML element, use kebab-case
instead of camelCase
.
Prop
|
Type
|
Validation
|
Default
|
Description
|
---|---|---|---|---|
|
String |
— |
— |
A space-separated list of class names that will be appended to the default |
|
String |
— |
— |
Sets the caption text of the card. |
|
Boolean |
— |
|
If |
|
Number |
Number in the range |
|
Sets the HTML heading level ( |
|
String |
The |
— |
Destination for the link card. When provide, transforms the entire card into a clickable link. Used only when the card does not contain an action link or button. |
|
String |
— |
— |
Sets the label text of the card. |
|
String |
— |
— |
Sets the metadata text of the card. |
|
String |
One of: |
|
Alters the size of the card. |
|
Boolean |
— |
|
If |
|
String |
Required |
— |
Sets the title text of the card. |
Pass text in between the <mds-card></mds-card>
tags to set the card’s title text. This can be overridden with the title
prop.
Slot Name
|
Description
|
---|---|
|
|
|
Displays content, such as images, Data Tables, or Charts. |
Setting title
, metadata
, and size
via props. Using named slots for mds-card-supplemental-content
:
<mds-card title="Hello World" size="small" metadata="Some metadata">
<img slot="mds-card-supplemental-content" src="../some/image/path" alt="Alt text">
</mds-card>
Setting title
and caption
via props. Using named slots for mds-card-action
:
<mds-card title="Hello World" caption="Example caption text.">
<mds-link slot="mds-card-action" href="#">Link</mds-link>
</mds-card>
mds-card__title
of a card, teams should use the header tag (<h#>
) which properly places the content within their product's information hierarchy.