Come creare: tabella annidata

Impara come creare tabelle annidate (tabella all'interno di una tabella).

Cellula Tabella annidata
Cellula 1
Cellula 2
Cellula 3
Cellula 4

Tabella annidata

Un tavolo incluso in un altro tavolo:

Esempio

<table>
  <tr>
    <td>Cell</td>
    <td>Nested Table</td>
      <table>
        <tr>
          <td>Cell 1</td>
        </tr>
        <tr>
          <td>Cell 2</td>
        </tr>
        <tr>
          <td>Cell 3</td>
        </tr>
        <tr>
          <td>Cell 4</td>
        </tr>
      </table>
    </td>
  </tr>
</table>

Prova da solo

Pagine correlate

Tutorial:Tabella HTML