MArkus Thomas: NN4.7 - Tabellen in Spalten erzeugen

Beitrag lesen

Hallo!

Das funktioniert nicht, weil die Syntax völlig falsch ist. Was Du suchst, sieht so aus:

<table>
  <tr>
    <td>
      <table>
        <tr>
          <td></td>
        </tr>
        <tr>
          <td></td>
        </tr>
        ....
      </table>
    </td>
    <td>
      <table>
        <tr>
          <td></td>
        </tr>
        <tr>
          <td></td>
        </tr>
        ....
      </table>
    </td>
    ........
  </tr>
</table>

Gruß Markus