Hallo
dann gebe doch einfach die Gesamtbreite in Table direkt an, d.h.
<table width="8140">
---
CSS
#t1 { width: 8140px; }
#t1 .c1 { width: 40px; }
#t1 .c2 { width: 100px; }
#t1 .c3 { width: 8000px; }
HTML:
<table id="t1" border="1">
<colgroup>
<col class="c1">
<col class="c2">
<col class="c3">
</colgroup>
<tr>
<td>1. Zeile, 1. Spalte</td>
<td>1. Zeile, 2. Spalte</td>
<td>1. Zeile, 3. Spalte</td>
</tr>
</table>
P.S.: Beispiel ungetestet, müßte aber funktionieren.
MfG
Danny