Alert Notification Generator
Preview
Information
Output format
Tailwind
1<div class="fixed top-5 right-5 z-[1000]">
2 <div class="flex items-start gap-3 w-[300px] bg-[#e3f2fd] border border-[#2196f3] text-[#0d47a1] rounded-[4px] p-[16px] text-[14px]">
3 <span class="text-xl text-[#2196f3]">ℹ</span>
4 <div class="flex-1">
5 <div class="font-bold">Information</div>
6 <div>This is an informational alert.</div>
7 </div>
8 <button class="opacity-70 hover:opacity-100 transition-opacity">✕</button>
9 </div>
10</div>