Nasıl oluşturulur: İç içe tablo

İç içe tabloları (tablo içinde tablo) oluşturma nasıl öğrenilir.

Hücre İç içe tablo
Hücre 1
Hücre 2
Hücre 3
Hücre 4

İç içe tablo

Bir tablo diğer bir tabloda içe gömülüdür:

Örnek

<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>

Try it yourself

Related pages

Tutorial:HTML table