How do I put the table headers above the table cells if they are in the same table row?
- by James Skidmore
I have a table like this:
<table>
<tr>
<th>Header</th>
<td>Content</td>
</tr>
<tr>
<th>Header</th>
<td>Content</td>
</tr>
</table>
How can I make the header actually float above the content cell without putting everything on a separate row? For instance:
Header
Content
Header
Content