Problem: Diagonal corner ribbon.

Solution#

html
<div class="relative overflow-hidden rounded-xl border p-6">
  <span class="absolute right-[-40px] top-4 rotate-45 bg-blue-600 px-12 py-1 text-xs text-white">SALE</span>
</div>

Why this works#

rotate-45 + negative right + overflow-hidden clips the ribbon.

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