Hallo!
Ich benötige etwas Hilfe bei einer Tabelle. Sie sieht in etwa so aus.
----------------------------------
| caption |
----------------------------------
| |
| Inhalt über 8 Zellen |
| |
----------------------------------
| |th | th |th | th | |
----------------------------------
|abc | 1 | 1| 1| 1 | 1| 1| 4|
-------------- -------------------
|abc | 1 | 1| 1| 1 | 1| 1| 4|
----------------------------------
|abc | 1 | 1| 1| 1 | 1| 1| 4|
----------------------------------
Der HTML-Code ist folgendermassen aufgebaut:
----------
<table cellspacing="0" cellpadding="2" border="1" rules="groups">
<caption>...</caption>
<colgroup width="100%"></colgroup><colgroup width="0*" span="3"></colgroup><colgroup width="0*" span="3"></colgroup><colgroup width="0*" />
<tbody>
<tr>
<td colspan="8"><img src="img.gif" alt="..." title="..." width="560" height="180" /></td>
</tr>
</tbody>
<tbody>
<tr>
<th>...</th>
<th scope="col">...</th>
<th colspan="2" scope="col">...</th>
<th scope="col">...</th>
<th colspan="2" scope="col">...</th>
<th scope="col">...</th>
</tr>
<tr>
<th scope="row">...</th>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
[...]
</tbody>
</table>
----------
Nun passiert - natürlich wieder nur im Explorer - dass die Zelle "Inhalt über 8 Zellen" über den Rand hinausschießt. Sprich er nimmt aus der colgroup die 100% für die erste Zelle und plaziert die restlichen dahinter, obwohl die Zelle ein colspan hat. Mehrere colgroup's kann man doch meines Wissens nicht definieren.
Was kann ich dagegen machen?
Bitte um Hilfe!
lg lixx