Problem: JS-free carousel.

Solution#

html
<div class="flex snap-x snap-mandatory gap-4 overflow-x-auto pb-2">
  <div class="w-72 shrink-0 snap-center rounded-xl border p-4">Slide</div>
</div>

Why this works#

snap-x + snap-mandatory + shrink-0 slides; scroll padding for edges.

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