HTML - Nested Tables
Overview
Estimated time: 10–15 minutes
Nesting tables is rarely necessary with modern CSS. If you must, keep structure simple.
Example
<table>
  <tr>
    <td>
      <table>
        <tr><td>Inner</td></tr>
      </table>
    </td>
  </tr>
</table>