JSFiddle - React, Tailwind, and code Playground

by dima_k

HTML

<a href="http://www.google.com" target="_blank">Press me or just hover me</a>

CSS

/* You can apply styles to links that not visited, visited or when you 
passes your mouse over them  */
a {
    font-size: 2em;
    font-weight: bold;
}
a:link{
    color: black;
}

 a:visited{
     color: green;
 } 

a:hover{
    color: red;
    text-decoration: line-through;
}