EG How do select the second div in this list if all I have is the id of the third?
<div></div>
<div>I want this</div>
<div id="i_know_this"></div>
This Suggests that I could use tilde. eg css=#i_know_this ~ div but it is selecting the next sibling rather than the previous one. Also, the ::before selector doesn't work.