show/hide this revision's text 3 !important

You want to look at the :hover pseudoselector, the color property, and the text-decoration property.

a:hover { color: red; text-decoration: none; }

To assure your hyperlink is styled as you want (and does not conflict with other style rules), use !important:

a:hover { color: red !important; text-decoration: none !important; }
show/hide this revision's text 2 Add info on properties.

You want to look at the :hover pseudoselector, the color property, and the text-decoration property.

a:hover { color: red; text-decoration: none; }
show/hide this revision's text 1

You want to look at the :hover pseudoselector.

a:hover { color: red; text-decoration: none; }