JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://stackoverflow.com">Stack Overflow</a>
<br><br>
<a href="http://example.com/blahblahblah">Unvisited</a>
<br><br>
The visited link takes the <code>font-size</code> and <code>text-decoration</code> properties of the <code>:link</code> selector, but not the <code>color</code>.

CSS

:link {
    font-size: 30px;
    color: red;
    text-decoration: none;
}
:link:hover {
    background-color: yellow;
}