tablesBeginner
Data Table
A clean tabular data display with sticky header and zebra rows.
Claude prompt
Drop this into Claude Code, claude.ai, or your AI tool of choice to regenerate or remix this component from scratch.
Build a data table with Tailwind: thead with uppercase column labels and a thin bottom border; tbody with alternating row backgrounds and a hover state. Last column right-aligned for actions. Wrap in an overflow-x-auto container so it scrolls horizontally on narrow viewports.
Code
html
<!--
Source: Mark Mead (HyperUI)
https://github.com/markmead/hyperui/blob/d09f638255d00e91e95f3cabea4f1d385356dd70/public/examples/application/tables/1.html
License: MIT
Surfaced via https://vibedex-ryan-staxs-projects-fb4e0931.vercel.app/components/hyperui-app-table
-->
<div class="bg-white text-gray-900 min-h-screen flex items-center justify-center">
<div class="mx-auto max-w-3xl p-6 w-full">
<div class="overflow-x-auto">
<table class="min-w-full divide-y-2 divide-gray-200">
<thead class="ltr:text-left rtl:text-right">
<tr class="*:font-medium *:text-gray-900">
<th class="px-3 py-2 whitespace-nowrap">Name</th>
<th class="px-3 py-2 whitespace-nowrap">DoB</th>
<th class="px-3 py-2 whitespace-nowrap">Role</th>
<th class="px-3 py-2 whitespace-nowrap">Salary</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200">
<tr class="*:text-gray-900 *:first:font-medium">
<td class="px-3 py-2 whitespace-nowrap">Nandor the Relentless</td>
<td class="px-3 py-2 whitespace-nowrap">04/06/1262</td>
<td class="px-3 py-2 whitespace-nowrap">Vampire Warrior</td>
<td class="px-3 py-2 whitespace-nowrap">$0</td>
</tr>
<tr class="*:text-gray-900 *:first:font-medium">
<td class="px-3 py-2 whitespace-nowrap">Laszlo Cravensworth</td>
<td class="px-3 py-2 whitespace-nowrap">19/10/1678</td>
<td class="px-3 py-2 whitespace-nowrap">Vampire Gentleman</td>
<td class="px-3 py-2 whitespace-nowrap">$0</td>
</tr>
<tr class="*:text-gray-900 *:first:font-medium">
<td class="px-3 py-2 whitespace-nowrap">Nadja</td>
<td class="px-3 py-2 whitespace-nowrap">15/03/1593</td>
<td class="px-3 py-2 whitespace-nowrap">Vampire Seductress</td>
<td class="px-3 py-2 whitespace-nowrap">$0</td>
</tr>
<tr class="*:text-gray-900 *:first:font-medium">
<td class="px-3 py-2 whitespace-nowrap">Colin Robinson</td>
<td class="px-3 py-2 whitespace-nowrap">01/09/1971</td>
<td class="px-3 py-2 whitespace-nowrap">Energy Vampire</td>
<td class="px-3 py-2 whitespace-nowrap">$53,000</td>
</tr>
<tr class="*:text-gray-900 *:first:font-medium">
<td class="px-3 py-2 whitespace-nowrap">Guillermo de la Cruz</td>
<td class="px-3 py-2 whitespace-nowrap">18/11/1991</td>
<td class="px-3 py-2 whitespace-nowrap">Familiar/Vampire Hunter</td>
<td class="px-3 py-2 whitespace-nowrap">$0</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>