Would it be possible to achieve this using CSS alone, or would I need to resort to jQuery?
This is how my code currently looks:
<tr>...</tr>
<tr>...</tr>
<tr>...</tr>
<tr class="some-class">...</tr> // My goal is to target only this one element
<tr class="some-class">...</tr>
<tr class="some-class">...</tr>
I attempted using tr + tr.some-class
, but that ended up selecting all elements with the given class, not just the first one.