Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Animate Text-decoration? Re: Animate Text-decoration?

#80364
mdrd
Participant

You actually don’t need javascript at all :)

Just use this.

#mydiv {
text-decoration: none;
}

#mydiv:hover {
text-decoration: underline;
}

It doesn’t have to be ‘underline’, that’s just an example. ;)