I need help with a table that has vertical headers. I want to remove the extra space within the table header and data cells. Here is the code for my table:
<table>
<tr>
<th class="field">Item ID Number:</th>
<td class="column">XXX 1234 (Location)</td>
</tr>
<tr>
<th class="field">Values:</th>
<td class="column">100,000 - 150,000 CM</td>
</tr>
<tr>
<th class="field">Item Status:</th>
<td class="column">Passed</td>
</tr>
</table>
Table Image-
https://i.sstatic.net/p6fA2.jpg
I have already tried adjusting the padding and margin of the table header and row elements, but it didn't solve the issue.