1行(すべての列のヘッダー)で表を作成し、ヘッダーの下に行と列(ヘッダーの後の通常の表)を作成したいと思います。私は今のところこのようなものを持っています:
<table style="margin: auto;" border="1">
<colgroup>
<col align="left">
<col align="right">
<col align="right">
<col align="right">
<col align="right">
<thead style="background: #F0F0F0" colspan="6" scope="colgroup">
<tr>
<th>header
<thead style="background: #F0F0F0">
<tr>
<th>a
<th> a
<th> a
<th> a <br> b
<th> a
<th> a
</table>
しかし、現在、「ヘッダー」は最初の列のみにあり、すべての列に拡大したいと考えています。