I am working on a HTML data table and I want it to show on desktop as it is and on mobile with repeating headers. How can I accomplish this?
Requirement:
On desktop
ID | Name | Age
_______________
1 | Jake | 23
2 | Dave | 45
On mobile
ID | 1
Name | Jake
Age | 23
_______________
ID | 2
Name | Dave
Age | 45
My table code:
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jake</td>
<td>23</td>
</tr>
<tr>
<td>2</td>
<td>Dave</td>
<td>45</td>
</tr>
</tbody>
</table>