可以说我有下表:
<table style="width:500px">
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>
现在,如果我使用first-child
选择器将样式应用于第一个 TD,无论如何我可以让它忽略具有 colspan 的 td(即使这是第一个孩子)?
table tr td:first-child{
width:100px;
}
如果有一种方法可以修改我的选择器说的话,我很乐意给带有 colspan 的 td 它自己的类名apply to first child except when the class name is x
?