With CSS3's :nth-child()
it's easy to fulfill the "specific" criterion:
#shopping-cart-totals-table > tbody > tr:nth-child(2) > td:nth-child(2) .price
Or, an alternative that works more in favor of browser compatibility (does not use CSS3 selectors, assumes exactly two tr
s and two td
s):
#shopping-cart-totals-table > tbody > tr + tr > td + td .price