div#blue a {color:none; text-decoration:none}div#blue a:hover {color:none; text-decoration:none}
<a href=\"blah\"><img src=\"\" alt=\"\" border=\"0\" /> </a>
a img { border:0; }
I have put the image in a div with an ID of "blue" and added this code to my style sheet:
div#blue a {color:none; text-decoration:none}div#blue a:hover {color:none; text-decoration:none}
Still I get a border, what am I doing incorrectly?
Thanks
a img { border:0; }Dang, that was easy!
You can also add :-
a {
outline-style: none;
}
This will hide the dotted border in firefox on the link when clicked.
Tob :D