I have a page where the CSS file says:
a:hover {border: solid 1px #AF0807;} but I can't seem to remove that border from images within links. (especially annoying as firefox only draws the border around the bottom 12 pixels of the picture)
My guesses such as
img {
border: 0px none;
}
a:hover>img {
border: 0px none;
}
img>a:hover {
border: 0px none;
}
don't seem to work
a:hover {border: solid 1px #AF0807;} but I can't seem to remove that border from images within links. (especially annoying as firefox only draws the border around the bottom 12 pixels of the picture)
My guesses such as
img {
border: 0px none;
}
a:hover>img {
border: 0px none;
}
img>a:hover {
border: 0px none;
}
don't seem to work