Having an issue with the tooltip not displaying on hover as expected. I am using only CSS, no JavaScript included. Any assistance would be greatly appreciated!
.tooltip{
position: relative;
opacity: 0;
padding: 10px;
background: #9B59B6;
border-radius: 5px;
-webkit-transition:all 0.2s ease-in;
-moz-transition:all 0.2s ease-in;
transition:all 0.2s ease-in;
}
HTML :
<div class="wrapper">
<span class="tooltip">Hello ! This is tooltip....</span>
<a href="#" class="show">Hover Me !</a>
</div>