Skip to content Tag 1 Tag 2 Card content Link CSS Components Web Components
Card content
Article card
Article are containers with a defined but flexible layout and are often used in groups to showcase collections of similar content, such as articles, news or webinars.
Implementations
The component ArticleCard
is available in the following technologies:
Parameters
Parameters
Make sure you have read about the parameters in here.
The parametrization of the component can be done with the following custom params or properties:
Name | Type | Slot | Description |
---|---|---|---|
image-src | string | ✅ | The |
image-alt | string | Alternative text for image accessibility | |
cross-origin | string | The | |
pre-line | string | ✅ | The pre-line of the article card |
tags | string[] | The tags of the article card | |
header | string | ✅ | The title of the article card |
content | string | ✅ | The content of the article card |
wide | boolean | ||
custom | object | A record of key-value pairs to set the CSS custom tokens. It's a complex attribute set as an JS object in stringified JSON format. Example: html
Check the available values in the customization section. | |
custom-str | string | The stringified version of the Example: html
| |
z-theme | string | Sets the theme of the component. The possible values are html
|
From Figma to code
...
Customization
INFO
Check everything about the customization mechanics in the "How it works" documentation.
CSS Variable | Type | Description |
---|---|---|
--z-article-card--width | distance | Width of the card |
--z-article-card--max-width | distance | Max width of the card |
--z-article-card--height | distance | Height of the card |
--z-article-card--bg | color | Background color of the card |
--z-article-card--color | color | Text color of the card |
--z-article-card--shadow | shadow | Shadow of the card |
The width, max-width and height of the article card can be customized using the --z-article-card--width
, --z-article-card--max-width
and --z-article-card--height
custom properties.
Also the background color, the text color and finally the shadow of the article card can be customized using the --z-article-card--bg
, --z-article-card--color
and --z-article-card--shadow
custom properties.
Accessibility
...