MSN style links
JavaScript
3
Posts
2
Posters
0
Views
1
Watching
-
I think you could have the same effect by applying the CSS pseudo-class for the anchor. Below is the example from W3Schools
a:link {color:#FF0000;} /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */active
defines the effect on mouse down event. -
I think you could have the same effect by applying the CSS pseudo-class for the anchor. Below is the example from W3Schools
a:link {color:#FF0000;} /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */active
defines the effect on mouse down event.