Problem: 7-column calendar.
Solution#
<div class="grid grid-cols-7 gap-px bg-slate-200 text-center text-sm">
<div class="bg-white p-2">1</div>
</div>Why this works#
gap-px + bg = cell borders.
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
Related recipes#
cookbook/index|Cookbook index · utilities/index|Utilities reference · patterns/index|Layout patterns
