JSFiddle - React, Tailwind, and code Playground
by Bart Kalisz
HTML
<a href="#dupa">hej gej</a>
CSS
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: blue;
}
/* selected link */
a:active {
color: yellow;
}