CSS question:
Is there a selector (or a combination or selectors) to target the <a> pointing to the element targeted by the current URL?
Let's say I have
<a href="#id1">link 1</a>
<a href="#id2">link 2</a>
<h1 id="id1">hello world</h1>
If I click the link, I know that I can now target the h1 with the `:target` pseudo-class. But can I target the link itself?