Hallo,
ich habe eine Tabelle, die die ganze Seite füllen soll. Also habe ich per CSS width und height auf 100% gesetzt. margin, padding des body sind 0. Oben, links und rechts passt alles wunderbar, nur unten ist ein circa 10 pixel hoher weißer Streifen. Ich habe keine Ahnung, wo der herkommmt.
Das Tabellengerüst:
<table cellpadding="0" cellspacing="0">
<colgroup>
<col width="*" />
<col class="innen" /> <--wird per CSS auf 800 gesetzt
<col width="*" />
</colgroup>
<tr>
<td colspan="3"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
Gruß Henning