JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://thibaultmilan.com" title="My website">See my website</a>

CSS

a{
    -moz-transition:all 0.4s ease;
    -webkit-transition:all 0.4s ease;
    -o-transition:all 0.4s ease;
    transition:all 0.4s ease;
    text-decoration:none;
    border-bottom:none;
}
a:hover{
    border-bottom:1px dashed black;
    background:red;
}