Nested Tables

You can place one table inside another to represent complex data structures. Use this carefully as it can complicate layouts.

<table border="1">
  <tr>
    <td>
      <table border="1">
        <tr><td>Nested</td></tr>
      </table>
    </td>
  </tr>
</table>
← PrevNext →