Nested Table
A nested table is a table inside another table. This is useful for creating complex layouts like invoices, reports, or dashboards.
<table border="1" cellpadding="5" cellspacing="0">
<tr>
<th>Main Table - Column 1</th>
<th>Main Table - Column 2</th>
</tr>
<tr>
<td>Row 1, Cell 1</td>
<td>
<table border="1" cellpadding="5" cellspacing="0">
<tr>
<th>Nested Table - Col 1</th>
<th>Nested Table - Col 2</th>
</tr>
<tr>
<td>Nested Row 1</td>
<td>Nested Row 1</td>
</tr>
<tr>
<td>Nested Row 2</td>
<td>Nested Row 2</td>
</tr>
</table>
</td>
</tr>
</table>