I am trying to incorporate a transition effect for my links. Essentially, I want the text-decoration
(which is currently set to underlink
) to gradually appear. Unfortunately, my previous attempt at achieving this has been unsuccessful:
#slink{
transition-property: text-decoration;
transition-duration: 500ms;
transition-timing-function: linear;
}
#slink:hover{
background: none;
}
Could you please provide guidance on how I can make this work successfully?