Hi,
I just wanted to know how can I create glowing text links ??
I just wanted to know how can I create glowing text links ??
Last edited by arijitsen on August 9th 2013, 3:41 am; edited 1 time in total
a.glow, a.glow:hover, a.glow:focus
{
text-decoration: none;
color: #aaf;
text-shadow: none;
-webkit-transition: 500ms linear 0s;
-moz-transition: 500ms linear 0s;
-o-transition: 500ms linear 0s;
transition: 500ms linear 0s;
outline: 0 none;
}
<a href="#" class="glow">Glowing Link</a>
a:hover{
text-shadow:0px 0px 5px #FFFFFF;
cursor:pointer;
}