标签: css css-selectors
我有这个:
<tr class="row"> <td> text <img> <!-- Select this --> </td> <td> text <img> <!-- Not this --> </td> </tr>
我可以使用哪种CSS-only选择器?
答案 0 :(得分:1)
使用:first-child这样的伪类:
:first-child
tr.row td:first-child img