This button fades in properly but instead of fading out when no longer hovered over it clips off Also, what is needed to be done for this to work on safari?
Here's my code:
.iob:hover {
text-shadow: 0 0 10px green;
transition: .25s;
transition-duration: 0.25s;
transition-timing-function: ease-in-out;
}
.iob {
cursor: pointer;
margin-left: 30px;
padding: 8px 18px;
color: #52AEC9;
}
<a href="https://www.google.com/?gws_rd=ssl" style="text-decoration:none;" target="_blank">
<p class="iob">Information</p>
</a>
Thanks!