JSFiddle - React, Tailwind, and code Playground

by porzechowski

HTML

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

CSS

a{
    color:green;
    text-decoration:none;
}
a:hover{
     color:red;
     text-decoration:underline;
 }

a:before{
    color:black;
    content:"virk ";
}
a:hover::before{
    color:blue;
    text-decoration:none;
    

}