I am currently working with CSS to apply an underline effect underneath a span element:
CSS:
.un {
text-decoration: none;
transition: all .5s ease-in;
}
.un:hover {
text-decoration: underline;
}
HTML:
<span class="un"> Underlined Text - Or to be underlined </span>
The underline is not transitioning over the specified 0.5-second duration as defined in the transition
property. How can I troubleshoot and fix this issue?