Ik wil een border rond 3 kolommen maar enkel in de header. Nu doet hij de gehele kolom
colgroup.bordergreen {
border: 5px solid green;
}
colgroup.borderblue {
border: 5px solid blue;
}<table class="noborder sortable nowrap">
<thead>
<colgroup span="4">
<col>
<col>
<col>
<col>
</colgroup>
<colgroup span="3" class="bordergreen">
<col>
<col>
<col>
</colgroup>
<col>
<colgroup span="3" class="borderblue">
<col>
<col>
<col>
</colgroup>
<col>
<tr>
<th class="sorttable_nosort"></th>
<th class="sorttable_nosort"></th>
<th>Voornaam</th>
<th>Naam</th>
<th data-fide>Aangesloten</th>
<th data-fide>FIDE nummer</th>
<th data-fide>FIDE ELO</th>
<th>Opmerking</th>
<th data-punten>Extra Punten</th>
<th data-punten>Extra weerstandpunten</th>
<th data-punten>Extra winstpunten</th>
<th class="sorttable_nosort"></th>
</tr>
</thead>
<tbody>
<tr>col1</tr>
<tr>col2</tr>
...
<tr>col12</tr>
</tbody>
</table>Als ik er thead voor zet dan doet hij niets.
Jan