<colgroup>
/ <col>
HTMLタグで定義されたスタイルの「操作」のフィールドを制限/制限する方法はありますか。
次の表があるとします。
<table>
<colgroup>
<col align="center" />
<col align="center" style="background-color: lightgrey;" />
<col align="center" />
</colgroup>
<thead>
<tr>
<th>Column A</th>
<th>Column B</th>
<th>Column C</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.a</td>
<td>1.b</td>
<td>1.c</td>
</tr>
<tr>
<td>2.a</td>
<td>2.b</td>
<td>2.c</td>
</tr>
</tbody>
</table>
background-color: lightgrey;
「列B」セル(2番目)には適用されないth
ようにしたいと思いthead
ます。