Is it possible to change the color of the underline on text when hovering, while keeping it different from the text color?
I have successfully achieved this in Firefox using the property "-moz-text-decoration-color
". However, this does not work in other major browsers.
p{
text-decoration: underline;
text-decoration-color: red;
-moz-text-decoration-color: red; /* Code for Firefox */
}
Does anyone have a solution for making this work in other browsers? Thank you!