Docs

Documentation versions (currently viewingVaadin 24)

Card

Styling API reference for the Card components.

Style Variants

The Card component supports the following style variants:

Open in a
new tab
Source code
CardVariants.java
card-variants.tsx
card-variants.ts

Horizontal

Place all card content on the side of the media element, if provided.

Open in a
new tab
Source code
CardHorizontal.java
card-horizontal.tsx
card-horizontal.ts

Stretch Media

Stretches the media element as wide – or tall, if combined with the horizontal variant – as the card, if the media element is an image, video, or an icon.

Open in a
new tab
Source code
CardStretchMedia.java
card-stretch-media.tsx
card-stretch-media.ts

Cover Media

Similar to the stretch-media variant, but this variant allows the media element to also cover the padding area of the card. This variant overrides the stretch-media variant.

Open in a
new tab
Source code
CardCoverMedia.java
card-cover-media.tsx
card-cover-media.ts

Combine Variants

You can combine all style variants together.

Open in a
new tab
Source code
CardCombineVariants.java
card-combine-variants.tsx
card-combine-variants.ts

Style Properties

The following style properties can be used in CSS stylesheets to customize the appearance of this component.

To apply values to these properties globally in your application UI, place them in a CSS block using the html {…​} selector. See Lumo Style Properties for more information on style properties.

Common Properties

Feature Property Default Value

Background

--vaadin-card-background

--lumo-shade-5pct

Box Shadow

--vaadin-card-box-shadow

none

Border Width

--vaadin-card-border-width

0

Border Color

--vaadin-card-border-color

--lumo-contrast-20pct

Border Radius

--vaadin-card-border-radius

--lumo-border-radius-l

Padding

--vaadin-card-padding

--lumo-space-m

Gap

--vaadin-card-gap

--lumo-space-m

Media Aspect Ratio

--vaadin-card-media-aspect-ratio

16/9, when the stretch-media or cover-media style variant is used without the horizontal style variant.

CSS Selectors

The following CSS selectors can be used in stylesheets to target the various parts and states of the component. See the Styling documentation for more details on how to style components.

Root element

vaadin-card

Parts

Media

vaadin-card::part(media)

Header

vaadin-card::part(header)

Content

vaadin-card::part(content)

Footer

vaadin-card::part(footer)

Title

vaadin-card [slot="title"]

Style Variants

Outlined

vaadin-card[theme~="outlined"]

Elevated

vaadin-card[theme~="elevated"]

Horizontal

vaadin-card[theme~="horizontal"]

Stretch Media

vaadin-card[theme~="stretch-media"]

Cover Media

vaadin-card[theme~="cover-media"]