JSFiddle - React, Tailwind, and code Playground

by dhavaljani

HTML

<center><a href="http://google.com/" class="tip">Link!<span>Hi its me!</span></a></center>

CSS

a.tip {
    position: relative;
}

a.tip span{
    content:'';
    display:block;
    width:0;
    height:0;
    position:absolute;
    
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent; 
    border-right:8px solid black;
    left:-8px;
    
    top:7px;
}

a:hover.tip {
    font-size: 99%; /* this is just for IE */
}

a:hover.tip span {
    display: block;
}