JSFiddle - React, Tailwind, and code Playground

by J. Albert Bowden

HTML

<a href="#">sandeep</a>

CSS

a{
    color:green;
}
a:hover{
     color:red;
 }

a:before{
    color:black;
    content:"virk";
}
a:hover:before{
    color:pink;

}