Usage
The Card component is used to display content in a card with a title, body, actions, and footer.
The Card component is commonly used to present related information, such as product details or summaries, in a compact and easily digestible format. It is often used inside a MultiColumn component to create a structured and visually balanced layout.
Coffee API
v1
::card
---
background-color: "#fff"
border: "1px solid #e0e4ea"
border-radius: "10px"
color: "#333"
margin: "0"
max-width: "500px"
padding: "32px"
width: "500px"
title: "Coffee API"
title-tag: "h2"
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
#actions
:::k-badge
v1
:::
#footer
:::button
View API
:::
#tagline
:::badge
---
appearance: "success"
---
Published
:::
::
Props
title
Text to display as the card title, rendered in a heading element. If the title
slot is provided, the slot content takes precedence.
- Type:
string
- Default:
''
titleTag
The HTML tag to use for the title.
- Type:
string
- Default:
h2
truncateTitle
A boolean that determines whether the card title should be truncated.
When set to true
, the title will be truncated to 2
lines.
- Type:
boolean
- Default:
true
Shared Props
This component also includes the shared props listed below:
backgroundColor
- default isinitial
border
- default is1px solid #e0e4ea
borderRadius
- default is10px
color
- default is#333
margin
- default is0
padding
- default is32px
maxWidth
- default isauto
textAlign
- default isleft
width
- default is100%'
styles
- default is''
See here for more information on shared props.
Slots
tagline
Use the tagline
slot to add content above the Card title.
title
Use the title
slot to add content to the Card title. When the slot content is provided, it takes precedence over the title prop.
default
Use the default
slot to add the main content between the title and footer of the card.
actions
Optionally utilize the actions
slot to add content to the top-right corner of the card.
footer
Optionally use the footer
slot to add content to the bottom of the card, typically for links or buttons.