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 Dismissible Alert</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 p-6 antialiased" x-data="{ visible: true }"> <div x-show="visible" x-transition:leave="transition ease-in duration-300 transform opacity-0 scale-95" class="w-full max-w-md bg-white border border-slate-100 rounded-3xl p-6 flex justify-between gap-5 shadow-2xl relative overflow-hidden" style="display: none;" > <div class="flex gap-5"> <div class="h-10 w-10 bg-slate-900 rounded-2xl flex items-center justify-center text-white shrink-0"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M11 5.882V19.24a1.76 1.76 0 01-3.417.592l-2.147-6.15M18 13a3 3 0 100-6M5.436 13.683A4.001 4.001 0 017 6h1.832c4.1 0 7.625-1.234 9.168-3v14c-1.543-1.766-5.067-3-9.168-3H7a3.988 3.988 0 01-1.564-.317z" /></svg> </div> <div class="pt-1"> <h3 class="text-sm font-bold text-slate-900 leading-none">Global Broadcast</h3> <p class="text-sm text-slate-500 mt-2 leading-relaxed">Incoming transmission from primary node sync. Authorization is required for all edge users.</p> </div> </div> <button @click="visible = false" class="text-slate-300 hover:text-rose-600 transition-colors cursor-pointer shrink-0"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M6 18L18 6M6 6l12 12" /></svg> </button> </div> <div x-show="!visible" class="text-center"> <button @click="visible = true" class="px-6 py-2 bg-slate-100 text-slate-400 rounded-full text-xs font-bold uppercase tracking-widest hover:text-slate-600 transition cursor-pointer">Restore Alert</button> </div> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>