Mario Lorenz: table rowspan height IE6

Beitrag lesen

Hallo,

im folgenden Code sollen paar Zellen eine feste Hoehe bekommen. Mozilla & Co. stellen das richtig dar, IE zieht die Zellen auseinander. Das Problem ist im Forum noch nicht geloest worden. Hat jemand einen Rat?

Vielen Dank, Mario

<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="100" height="40">Hoehe 1 (40)</td>
    <td colspan="2"> </td>
  </tr>
  <tr>
    <td height="50">Hoehe 2 (50)</td>
    <td rowspan="3">Blindtext bitte grosszuegig fuellen
      </td>
    <td width="100" rowspan="3">Rand</td>
  </tr>
  <tr>
    <td height="60">Hoehe 3 (60)</td>
  </tr>
  <tr>
    <td>variabel</td>
  </tr>
</table>