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 Dropdown Menu</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center min-h-screen pt-32 antialiased" x-data="{ open: false }"> <div class="relative"> <!-- Trigger --> <button @click="open = !open" @click.away="open = false" class="inline-flex items-center gap-2 px-6 py-3 bg-white border border-slate-200 text-slate-700 text-sm font-bold rounded-2xl shadow-sm hover:bg-slate-50 transition-all cursor-pointer" > Options <svg class="h-4 w-4 transition-transform duration-300" :class="open ? 'rotate-180' : ''" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M19 9l-7 7-7-7" /></svg> </button> <!-- Menu --> <div x-show="open" x-transition:enter="transition ease-out duration-200" x-transition:enter-start="opacity-0 scale-95" x-transition:enter-end="opacity-100 scale-100" x-transition:leave="transition ease-in duration-100" x-transition:leave-start="opacity-100 scale-100" x-transition:leave-end="opacity-0 scale-95" class="absolute left-0 mt-3 w-56 bg-white border border-slate-100 rounded-3xl shadow-2xl overflow-hidden z-50 origin-top-left" style="display: none;" > <div class="p-2"> <a href="#" class="block px-4 py-3 text-sm font-medium text-slate-600 rounded-2xl hover:bg-indigo-50 hover:text-indigo-600 transition-colors">Project Settings</a> <a href="#" class="block px-4 py-3 text-sm font-medium text-slate-600 rounded-2xl hover:bg-indigo-50 hover:text-indigo-600 transition-colors">Team Access</a> <a href="#" class="block px-4 py-3 text-sm font-medium text-slate-600 rounded-2xl hover:bg-indigo-50 hover:text-indigo-600 transition-colors">Billing Hub</a> </div> <div class="p-2 border-t border-slate-50"> <a href="#" class="block px-4 py-3 text-sm font-bold text-rose-600 rounded-2xl hover:bg-rose-50 transition-colors">Logout</a> </div> </div> </div> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>