JSFiddle - React, Tailwind, and code Playground

by Sukanya Halder

HTML

<a href="#">This is a link</a>

CSS

a{
    color:red;
}
a:hover{
    color:#ccc;
}
a:link{
    color:blue;
}
a:active{
    color:lime;
}
a:visited{
    color:#999;
}