我有这样的问题,我有类似的东西:
<tr>
<td class="someclass">
<input />
</td>
...
<td> </td>
<td> </td>
..
</tr>
我想覆盖&#34; someclass&#34; css类,仅适用于<td>
的第一个<input>
。我该怎么做?也许与父母规范或类似的东西?注意:我无法添加新课程
答案 0 :(得分:0)
请试试这个:
table tr > td:first-child input{
property: value;
}
答案 1 :(得分:0)
您可以使用css伪类 first-child
从IE7 +支持
.someclass{background:red;}
#table1 tr > td:first-child {background:blue;}
<table id="table1">
<tr>
<td class="someclass">One</td>
<td>Two</td>
<td>Three</td>
</tr>
</table>
请参阅此link以了解有关css选择器的更多信息