Is there a way to make the first row in a table with only td elements fixed (labels)? The table structure is as follows:
<table>
<tr>
<td>Name:</td>
<td>Age:</td>
</tr>
<tr>
<td>John</td>
<td>20</td>
</tr>
<tr>
......
</tr>
</table>
I need the labels Name and Age in the first row to stay fixed during scrolling. Any suggestions?