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 Skeleton Table</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center items-center min-h-screen p-6 antialiased"> <div class="max-w-4xl w-full bg-white rounded-[3rem] border border-slate-100 shadow-sm overflow-hidden animate-pulse"> <div class="p-8 border-b border-slate-50 flex items-center justify-between"> <div class="h-6 w-48 bg-slate-100 rounded-lg"></div> <div class="h-10 w-32 bg-slate-50 rounded-xl"></div> </div> <div class="overflow-x-auto"> <table class="w-full"> <thead> <tr class="border-b border-slate-50"> <th class="p-8 text-left"><div class="h-3 w-20 bg-slate-100 rounded-full"></div></th> <th class="p-8 text-left"><div class="h-3 w-32 bg-slate-100 rounded-full"></div></th> <th class="p-8 text-left"><div class="h-3 w-24 bg-slate-100 rounded-full"></div></th> <th class="p-8 text-left"><div class="h-3 w-16 bg-slate-100 rounded-full"></div></th> </tr> </thead> <tbody class="divide-y divide-slate-50"> <tr> <td class="p-8"><div class="h-4 w-32 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-48 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-24 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-8 w-20 bg-slate-50 rounded-xl"></div></td> </tr> <tr> <td class="p-8"><div class="h-4 w-32 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-48 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-24 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-8 w-20 bg-slate-50 rounded-xl"></div></td> </tr> <tr> <td class="p-8"><div class="h-4 w-32 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-48 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-24 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-8 w-20 bg-slate-50 rounded-xl"></div></td> </tr> <tr> <td class="p-8"><div class="h-4 w-32 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-48 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-4 w-24 bg-slate-50 rounded-lg"></div></td> <td class="p-8"><div class="h-8 w-20 bg-slate-50 rounded-xl"></div></td> </tr> </tbody> </table> </div> </div> </body> </html>