In this html:
<tbody>
<tr class="cart-item">
<td class="image">
<a href="listing_page/PR1"></a>
</td>
<th scope="row" class="info"> ... </th>
<td class="price"> .. </td>
<td class="actions">
<a href="" class="">Remove from cart</a></td>
</tr>
<tr class="cart-item">
<td class="image">
<a href="listing_page/PR2"></a>
</td>
<th scope="row" class="info"> ... </th>
<td class="price"> .. </td>
<td class="actions">
<a href="" class="">Remove from cart</a></td>
</tr>
</tbody>
I want to select the anchor tag with "Remove from the cart". But I need it to be uniquely identified with the product code. It is listed in the tr tag which contains href with product code "listing_page/PR1".
Any ideas on how to do it with CSS?