New to Telerik UI for BlazorStart a free 30-day trial

Card Building Blocks

Updated on Sep 10, 2026

The Card component supports a variety of template-based components used as building blocks. All building blocks can be rendered as root level elements of the Card and therefore can be used as desired with no restriction in their place of declaration or requirement for the Card structure. The elements can also be nested inside each other.

CardHeader

Use the CardHeader tag to render header area of the Card.

Render CardHeader area. The result from the snippet below.

Example
View Source
Loading ...

CardBody

Use the CardBody tag to render the body of the Card.

Render CardBody area. The result from the snippet below.

Example
View Source
Loading ...

CardFooter

Use the CardFooter tag to render the footer area of the Card.

Render CardFooter area. The result from the snippet below.

Example
View Source
Loading ...

CardImage

Use the CardImage tag to render the image section of the Card. The image will fill the size of the card unless you set any other Width and Height values.

Use CardImage in the Card component. The result from the snippet below.

Example
View Source
Loading ...

CardActions

Use the CardActions tag to render the actions area of the Card. You could place any action buttons inside and style them with the predefined orientation and layout of the buttons.

Use CardActions in the Card component. The result from the snippet below.

Example
View Source
Loading ...

CardSeparator

Use the CardActions tag to render the actions area of the Card. An example of CardSeparator used between Card elements or nested inside an element.

Use CardSeparator in the Card component. The result from the snippet below.

Example
View Source
Loading ...

CardTitle

Use the CardTitle tag to render a title (heading). Although the header area is suitable for placing title, it is not required and you can use the CardTitle as desired. The below sample demonstrates implementation of a title in three different sections.

Use CardTitle in the Card component. The result from the snippet below.

Example
View Source
Loading ...

CardSubTitle

Use the CardSubTitle tag to render sub title. Although the header area is suitable for placing title and sub title, it is not required and you can use the CardSubTitle as desired. It can also be used along with the CardTitle or as a standalone element. The below sample demonstrates both approaches.

Use CardSubTitle in the Card component. The result from the snippet below.

Example
View Source
Loading ...

See Also