I there a way of selecting (using css) the nth child from an element with a certain class. For example, for the following, how could I select the li
element with the id="this"
(shown for explanation purposes)? So basically I want to say the 2nd element from the element with class="selected"
<ul>
<li></li>
<li class="selected"></li>
<li></li>
<li id="this"></li>
<li></li>
<li></li>
<li></li>
</ul>