Problem: Event history.

Solution#

html
<ol class="relative border-s border-slate-200 ps-6 space-y-8">
  <li class="relative">•<span class="absolute -start-[31px] top-1 size-3 rounded-full bg-blue-600"></span>Event</li>
</ol>

Why this works#

border-s line + absolutely positioned dots.

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