A simple card component to wrap other stuff in!
Content
---import { Card } from 'studiocms:ui/components';---
<Card> Content</Card>
Instead of just having a bordered card, you can use the variant
prop to change the card’s appearance. Set it to
filled
to have a card with a filled background:
Content
---import { Card } from 'studiocms:ui/components';---
<Card variant='filled'> Content</Card>
You can set the card to grow to its parent containers width using the fullWidth
param:
Content
---import { Card } from 'studiocms:ui/components';---
<Card fullWidth> Content</Card>
Additionally, you can set the card to grow to its parent containers height using the fullHeight
param:
Content
---import { Card } from 'studiocms:ui/components';---
<Card fullHeight> Content</Card>
The card component supports a header and footer slot:
Lorem ipsum dolor sit amet. Et nulla cumque et suscipit molestiae est quam eaque et placeat iste est velit dignissimos aut totam voluptatum qui eveniet nostrum. Aut neque reprehenderit est vero debitis in inventore voluptas ut dolores facilis et voluptatibus quibusdam aut dolorum sunt non vitae sequi.
---import { Card } from 'studiocms:ui/components';---
<Card> <h4 slot='header'>Header Content</h4> <p> Lorem ipsum dolor sit amet. Et nulla cumque et suscipit molestiae est quam eaque et placeat iste est velit dignissimos aut totam voluptatum qui eveniet nostrum. Aut neque reprehenderit est vero debitis in inventore voluptas ut dolores facilis et voluptatibus quibusdam aut dolorum sunt non vitae sequi. </p> <span slot='footer'>Footer Content</span></Card>
A card can be anything you want it to be, literally! Cards support Astro’s Polymorphic
type, meaning you can render the card
as whatever you want by passing the as
attribute. Here’s a card that renders as an <a>
tag instead of a <div>
:
---import { Card } from 'studiocms:ui/components';---
<Card as='a' href='https://studiocms.dev'> studiocms.dev</Card>