Problem: Bottom nav (mobile).
Solution#
<div class="fixed inset-x-0 bottom-0 z-40 border-t bg-white md:hidden">
<nav class="grid grid-cols-4 text-center text-xs">
<a class="py-2 text-blue-600">Home</a><a class="py-2 text-slate-500">Search</a><a class="py-2 text-slate-500">Saved</a><a class="py-2 text-slate-500">Profile</a>
</nav>
</div>Why this works#
Bottom tab bar under md.
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
