CSS – 仅在表的tbody中选择th标签

前端之家收集整理的这篇文章主要介绍了CSS – 仅在表的tbody中选择th标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用一个css选择器来获取只有t标签的t标签.该部分中还有th标签,我不希望包含在选择器中.这是我正在使用的标记.有没有选择器来完成这个?
<table class="bgtable">
<thead><tr><td width="40%">&nbsp;</td>
<th class="tdplain">Grade 4</th>
<th class="tdplain">Grade 8</th>
<th class="tdplain">Grade 12</th>
</tr>
</thead>
<tbody><tr><th class="tdplain">Civics (2010)</th>
<td class="tdplain">769K</td>
<td class="tdplain">577K</td>
<td class="tdplain">1179K</td>
</tr>
</tbody>
</table>

解决方法

.bgtable tbody th {
   color: red;
}
原文链接:https://www.f2er.com/css/214606.html

猜你在找的CSS相关文章