I'm in the process of creating a table with subcategories and headers that resembles the image provided below:
Here's what I've come up with so far:
<table>
<thead>
<tr>
<th>Item</th>
<th>Openings</th>
<th>Internal Dimensions</th>
<th>Weight</th>
<th>Volume</th>
</tr>
</thead>
<tbody>
<tr>
<td>Box</td>
<td>300x500</td>
<td>300cm x 400cm x 600cm</td>
<td>Min: 100g, Max: 200g, NA</td>
<td>300</td>
</tr>
</tbody>
</table>
Is it feasible to achieve a table layout similar to the provided image above?