donut: Tabelleninhalte ausrichten - Netscape?

Beitrag lesen

nö, verstehe nicht ganz

in Block 1 bilde ich eine Zeile mit 1+Menü+1=n Zellen
in Block 2 nehem ich die erste Zelle als Start weg, habe dann n-1 Zellen im Block zur verfügung.
in den n-1 Zellen ist eine Table mit x Zellen (wobei x = eine Zelle oder = 20 Zellen sein kann.

Wo ist dann da eine zuviel?

<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
 <tr>
  <td colspan="2" align="right">
   <table width="100%" cellpadding="0" cellspacing="1" border="0">
    <tr>

BLOCK 1
     <td width="100%" bgcolor="#erste"> 
     </td>
     <td bgcolor="#zwote" valign="center" nowrap>
       ... hier mehrere Zellen
     </td
     <td width="24" bgcolor="#zwote"><img src="/pfad/blind.gif" width="8" height="20" hspace="0" vspace="0" border="0" alt=".">
     </td>
    </tr>

Ende Block 1

Block 2

<tr>
     <td> 
     </td>
     <td colspan="zellenanzahl-1" bgcolor="#dritte" align="left">
      <table width="100%" border="0" cellspacing="0" cellpadding="3">
       <tr>
        <td nowrap>
            ... mehrere Zellen ...
        </td>
 <td width="100%"><img src="/blind.gif" width="2" height="18" hspace="0" vspace="0" border="0" alt=".">
        </td>
       </tr>
      </table>
     </td>

Ende Block 2

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