Is there a way to dynamically color links based on user interaction? For instance, let's say I want to specify the color for unvisited links:
a.newlink:link {
color: red;
}
<a href="/privacy" target="_blank" class="newlink">New link</a>
However, this method doesn't seem to be working. Can anyone provide some assistance?