40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<title>Chakra-like Table</title>
|
|
</head>
|
|
<body class="bg-gray-50 p-10">
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full bg-white border border-gray-200 rounded-lg">
|
|
<thead class="bg-teal-500 text-white">
|
|
<tr>
|
|
<th class="px-6 py-3 text-left">Name</th>
|
|
<th class="px-6 py-3 text-left">Age</th>
|
|
<th class="px-6 py-3 text-left">City</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="border-b">
|
|
<td class="px-6 py-4">Mann</td>
|
|
<td class="px-6 py-4">21</td>
|
|
<td class="px-6 py-4">Calgary</td>
|
|
</tr>
|
|
<tr class="border-b bg-gray-50">
|
|
<td class="px-6 py-4">Alice</td>
|
|
<td class="px-6 py-4">25</td>
|
|
<td class="px-6 py-4">Toronto</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="px-6 py-4">Bob</td>
|
|
<td class="px-6 py-4">30</td>
|
|
<td class="px-6 py-4">Vancouver</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|