dakirsche: Darstellung IE seltsam...

Beitrag lesen

Moin moin,

ich habe mir ein Layout erstellt, welches an folgender Stelle Fehler auswirft:

  
<div ID="Cont_navR" onMouseOver="state=0;hideSub();">  
  <table border="0" cellpadding="0" cellspacing="0" id="Tab_navR">  
    <tr>  
      <td class="RLineTop" valign="top">  
        <img src="./images/default/default_navR_borderL_top.jpg" width="3px" height="111px" border="0" valign="top">  
      </td>  
      <td rowspan="2" id="default_navR">  
        &nbsp;<br />  
        $modules  
      </td>  
    </tr>  
    <tr>  
      <td class="RLineBot" valign="bottom">  
        <img src="./images/default/default_navR_borderL_bottom.jpg" width="3px" height="273px" border="0">  
      </td>  
    </tr>  
  </table>  
</div>  

Mit CSS soll die Linie durchgezogen werden (Siehe Bild 1)

  
DIV#Cont_navR{  
width:183px;  
height:100%;  
float:right;  
top:0px;  
}  
table#Tab_navR td#default_navR{  
width:180px;  
}  
td.RLineTop{  
width:3px;  
background:url(../images/default/default_navR_borderL_center.jpg) #fff repeat-y left top;  
}  
td.RLineBot{  
width:3px;  
height:273px;  
background:url(../images/default/default_navL_borderL_center.jpg) #fff repeat-y left top;  
}  

Bild vom FireForx:
Mozilla
Bild vom IE:
IE

Der Fehler wird im oberen Bereich der RLineBot dargetsellt und ich weiss nicht warum...

Wodrin liegt der Fehler, dass der IE das so Sch... ausspuckt?
MfG
DaKirsche