Ralph: IE 6.0 Bug (rowspan)

Beitrag lesen

Hallo,

habe wohl ein 1Pixel Bug gefunden mit rowspan??

Folgende 2 Tabelle hat im 2 Set ein Pixel zu wenig:

Schematisch:
 ======          <--- 1 Pixel zu tief
|      |======
|      |      |
|      |======
|      |      |
 ====== ======

Code:

<TABLE  border="0" cellspacing="0" cellpadding="0">
   <TR>
       <TD width="300" height="200" rowspan="3" bgcolor="red"> </TD>
   </TR>
    <TR>
        <TD width="300" height="150" bgcolor="green"> </TD>
    </TR>
    <TR>
        <TD width="300" height="50"  bgcolor="blue"> </TD>
    </TR>
</TABLE>

Workaround:
1 Zelle nie mit Rowspan versehen...2Tabellen machen
oder nested Tables...

Gruss

Ralph