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 Ghost Button</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex items-center justify-center min-h-screen"> <button class="px-8 py-4 text-slate-400 font-black text-sm uppercase tracking-widest hover:text-slate-900 hover:bg-slate-100 rounded-2xl transition-all cursor-pointer"> Ghost Button </button> </body> </html>