CSS Tool Tip

by mrjordy

HTML

<br><br><br>
<p title="Request access, add users, elevate permissions." class="tooltip"><a href="mailto:[email protected]?body=###Unique%20Identifier:%20Request%20Access###">Access</a></p>
<br><br>
<p title="Ask stuff about STEAG." class="tooltip"><a href="mailto:[email protected]?body=###Unique%20Identifier:%20STEAG###">STEAG</a></p>
<br><br>
<p title="Ask stuff about other stuff." class="tooltip"><a href="mailto:[email protected]?body=###Unique%20Identifier:%20Other###">Other</a></p>

CSS

.tooltip{
    display: inline;
    position: relative;
}
.tooltip:hover:after{
    background: #333;
    background: rgba(0,0,0,.8);
    border-radius: 5px;
    bottom: 26px;
    color: #fff;
    content: attr(title);
    left: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 220px;
}
.tooltip:hover:before{
    border: solid;
    border-color: #333 transparent;
    border-width: 6px 6px 0 6px;
    bottom: 20px;
    content: "";
    left: 50%;
    position: absolute;
    z-index: 9999;
}