2
我有這樣的:選擇器的.class後IMG和第一個TD
<tr class="row">
<td>
text
<img> <!-- Select this -->
</td>
<td>
text
<img> <!-- Not this -->
</td>
</tr>
其中CSS-只選擇我可以用嗎?
我有這樣的:選擇器的.class後IMG和第一個TD
<tr class="row">
<td>
text
<img> <!-- Select this -->
</td>
<td>
text
<img> <!-- Not this -->
</td>
</tr>
其中CSS-只選擇我可以用嗎?
使用:first-child
僞類是這樣的:
tr.row td:first-child img