.class和第一个td之后的img选择器

时间:2011-11-14 16:02:57

标签: css css-selectors

我有这个:

<tr class="row">
 <td>
  text
  <img>    <!-- Select this -->
 </td>
 <td>
  text
  <img>    <!-- Not this -->
 </td>
</tr>

我可以使用哪种CSS-only选择器?

1 个答案:

答案 0 :(得分:1)

使用:first-child这样的伪类:

tr.row td:first-child img