Alexandra: Darstellungsproblem IE 6.0

Beitrag lesen

Mein Problem:
Folgende Seite wird in Firefox sowie IE 7.0 korrekt angezeigt. Es gibt eine TABLE mit einer TD "content". Darin befinden sich zwei DIVs, "links" und "rechts".
Komischerweise bricht mir der IE 6.0 diese zwei DIVs auseinander, sodass der Container "rechts" unterhalb des Container "links" angezeigt wird.

Woran könnte das liegen??

http://www.mylocalspace.ch/kunzfenster/referenzen.php

#content{
 width:610px;
 background-color:#ffffff;
 vertical-align:top;
}

#links{
 float:left;
 width:150px;
}

#rechts{
 float:left;
 width:460px;
}

#inhalt{
  float:left;
  width:420px;
  background: #ffffff url(images/bg_content.jpg) repeat-x;
  background-position:top;
  padding:60px 20px 0px 20px;
}

<table cellspacing="0" cellpadding="0" border="0" style="height:100%;" width="610">
  ...
    <td id="content">

<div id="links">
        <div id="subnavigation"></div>
      </div>

<div id="rechts">
        <div id="inhalt">...inhalt blabla...</div>
      </div>

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