Here is some example HTML code:
<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 would like to target the anchor tag with the text "Remove from the cart", but I need to reference it specifically with the product code. It can be found within the tr tag that contains a href attribute with the product code "listing_page/PR1".
Does anyone have any suggestions on achieving this using CSS?