Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Solid Background Breadcrumb</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-100 flex items-center justify-center h-screen px-4"> <nav class="flex overflow-hidden border-2 border-slate-900 rounded-2xl bg-white shadow-2xl" aria-label="Breadcrumb"> <ol class="inline-flex items-stretch"> <li class="flex items-center"> <a href="##" class="px-8 py-5 text-sm font-black uppercase tracking-widest text-white bg-slate-900 hover:bg-rose-600 transition-colors">Home</a> </li> <li class="flex items-center"> <a href="##" class="px-8 py-5 text-sm font-black uppercase tracking-widest text-slate-900 bg-slate-100 hover:bg-slate-200 transition-colors border-l-2 border-slate-900">Projects</a> </li> <li aria-current="page" class="flex items-center"> <span class="px-8 py-5 text-sm font-black uppercase tracking-widest text-rose-600 bg-white border-l-2 border-slate-900 animate-pulse">Inventory</span> </li> </ol> </nav> </body> </html>