I have defined an tag with css. I\'m trying to stop default stylesheet :hover changes on the a tag. How do I disable the hov
:hover
a
Just define your CSS without a "a:hover"
a { color: #fffff }
This CSS will override the a:link, a:hover, a:visited and a:active.