Problem: Media-object cards.

Solution#

html
<div class="flex gap-4 rounded-xl border p-4">
  <img class="size-20 shrink-0 rounded-lg object-cover" src="a.jpg" alt="" />
  <div class="min-w-0">
    <h3 class="font-semibold truncate">Title</h3>
    <p class="text-sm text-slate-500 line-clamp-2">Excerpt</p>
  </div>
</div>

Why this works#

shrink-0 media + min-w-0 text = the media object.

Variants#

  • Responsive: add screen prefixes to the core classes
  • Dark: pair each color utility with its dark: twin
  • Animated: add transition + a state variant for motion

cookbook/index|Cookbook index · utilities/index|Utilities reference · patterns/index|Layout patterns