I am exploring a way to achieve the equivalent of jQuery's eq() selector to pinpoint elements on a webpage according to their sequence. While :nth-child() fits the bill, I'm seeking a method that targets elements not classified as children. For instance:
<div></div>
<div></div>
In CSS, how can I target the second div listed without assigning it an id or class?