Monika: Menü / line-height IE 5.0

Beitrag lesen

Habe ein kleines Problem mit meinem Menü im IE 5.0, das im IE 6.0 perfekt angezeigt wird...
Und zwar ignoriert der 5.0 meine im CSS (.clTop) festgelegte line-height...

Hier mal der Code:

________CSS________

#divCont {
 position:absolute;
 z-index:20;
 left:786px;
 top:160px;
 height:400px;
 width:170px;
 visibility: visible;
}

.clSub   {
 position:absolute;
 z-index:-5;
 left:20px;
 top:0px;
 width:186px;
 line-height:14px;
 background-color: #90A4DD;
 text-indent: 7px;
 border-top-width: 21px;
 border-top-style: solid;
 border-top-color: 90A4DD;
 border-right-width: 0px;
 border-bottom-width: 0px;
 border-left-width: 0px;
 border-right-style: none;
 border-bottom-style: none;
 border-left-style: none;
}
.clTop   {
 position:absolute;
 z-index:0;
 width:170px;
 line-height:5px;
}

.einzug   {
 text-indent: 10px;
}

...
____________________________________________

________Menü________
<table id="divCont">
  <tr>
    <td id="divTop0" class="clTop">
      <table width="205" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td width="19"><img src="Bilder/button_n.gif" name="imgA0" alt="" border="0"></td>
          <td class="einzug" width="186" background="Bilder/button_back.gif"><a href="index.php" onfocus="this.blur()" onclick="openup(0);MM_swapImage('titel_links','','Bilder/index_02.gif','content','','Bilder/index_03.gif',1);MM_showHideLayers('iframe','','hide','suche','','hide','aktuell','','show','lastminute','','show','ticker','','show')">Home</a><br></td>
        </tr>
      </table>
      <table id="divSub0" class="clSubnone">
        <tr>
          <td></td>
        </tr>
      </table>
      <br>
    </td>
  </tr>

<tr>
    <td id="divTop1" class="clTop">
      <table width="205" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td width="19"><img src="Bilder/button_n.gif" name="imgA1" alt="" border="0"></td>
          <td class="einzug" width="186" background="Bilder/button_back.gif"><a href="wir.html" target="1" onclick="openup(1);MM_swapImage('titel_links','','Bilder/l_norm.gif','content','','Bilder/content_03.gif',1);MM_showHideLayers('iframe','','show','suche','','hide','aktuell','','hide','lastminute','','hide','ticker','','hide')" onfocus="this.blur()">Wir
            über uns</a><br></td>
        </tr>
      </table>
      <table id="divSub1" class="clSub">
        <tr>
          <td><a href="vorstell.php" target="1" onclick="MM_swapImage('titel_links','','Bilder/l_norm.gif','content','','Bilder/content_03.gif',1)">VHS Cham stellt sich vor</a><br></td>
        </tr>
        <tr>
          <td><a href="zeit.php" target="1" onclick="MM_swapImage('titel_links','','Bilder/l_norm.gif','content','','Bilder/content_03.gif',1)">Geschäftszeiten</a><br></td>
        </tr>
        <tr>
          <td><a href="agb.php" target="1" onclick="MM_swapImage('titel_links','','Bilder/l_norm.gif','content','','Bilder/content_03.gif',1)">AGB</a><br></td>
        </tr>
      </table>
      <br> </td>
  </tr>

...

____________________________________________

Zu sehen ist das ganze unter www.vhs-cham.de/neu

Ich vermute fast, dass sich irgendwas überschneidet, denn die line-height aus .clSub wird problemlos angezeigt, komm aber nicht drauf...
Liegt es vielleicht daran, dass der eine Style im <td>- und der andere (funktionierende) im <table>-Tag liegt?