Skip to content

Detail List Card

This single list card is used within the grid system to create lists of detailed cards. The card consists of an image and an <h3> tag, entirely wrapped in a link.

<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="example-card-heading"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="example-card-heading"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
Low-Residency MFA in Narrative Media Writing
</h3>
</a>

Place cards inside the grid system to create responsive lists. Cards fill their grid column and stack on narrow viewports.

<div class="obj-grid obj-grid--gap-md">
<div class="obj-grid__full obj-grid__third@md">
<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="grid-card-1"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="grid-card-1"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
Low-Residency MFA in Narrative Media Writing
</h3>
</a>
</div>
<div class="obj-grid__full obj-grid__third@md">
<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="grid-card-2"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="grid-card-2"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
Master of Education in Learning, Design, and Technology
</h3>
</a>
</div>
<div class="obj-grid__full obj-grid__third@md">
<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="grid-card-3"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="grid-card-3"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
Bachelor of Science in Education
</h3>
</a>
</div>
</div>

For a denser layout, use a tighter grid that progresses to four columns at @lg.

<div class="obj-grid obj-grid--gap-md">
<div
class="obj-grid__full obj-grid__half@sm obj-grid__third@md obj-grid__quarter@lg"
>
<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="compact-card-1"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="compact-card-1"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
Bachelor of Science in Special Education
</h3>
</a>
</div>
<div
class="obj-grid__full obj-grid__half@sm obj-grid__third@md obj-grid__quarter@lg"
>
<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="compact-card-2"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="compact-card-2"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
Low-Residency MFA in Narrative Media Writing
</h3>
</a>
</div>
<div
class="obj-grid__full obj-grid__half@sm obj-grid__third@md obj-grid__quarter@lg"
>
<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="compact-card-3"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="compact-card-3"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
M.Ed. in Reading Education
</h3>
</a>
</div>
<div
class="obj-grid__full obj-grid__half@sm obj-grid__third@md obj-grid__quarter@lg"
>
<a class="util-delink util-underline-hover util-color-red" href="#">
<img
aria-labelledby="compact-card-4"
class="util-block util-full-width"
src="/images/uga-hero.jpg"
alt="Description of photo."
/>
<h3
id="compact-card-4"
class="cmp-heading-5 util-margin-top-sm util-margin-bottom-none"
>
Master of Business and Technology
</h3>
</a>
</div>
</div>
PropTypeDefaultDescription
hrefstring"#"Link destination
srcstring"/images/uga-hero.jpg"Image source path
altstring"Description of photo."Image alt text
headingstring"Card Heading"Card heading text
idstring"card-heading"Unique ID linking the image’s aria-labelledby to the heading
ElementClassesPurpose
<a>.util-delink, .util-underline-hover, .util-color-redWrapping link with no default link styling; underline appears on hover; red text color
<img>.util-block, .util-full-widthImage fills the card width as a block element
<h3>.cmp-heading-5, .util-margin-top-sm, .util-margin-bottom-noneHeading styled at h5 size with tight spacing

The image uses aria-labelledby pointing to the heading’s id, which associates the image with the card’s text label. Always provide a meaningful alt attribute on the image as well. Each card should have a unique id value.