How to remove blue highlight on linked image

i use css for my link styles.

i made an image a link.

i want to add html code around the /a href/ and /img src/ code that will take away the blue highlight that is around the image becasue it is an active link. i also want to take away the purple highlight that when it is a visited link.

i think it is a span style somehow…i dont want to put it in the css, just want to do it it the code itself. how do i tdo it?

Here is the solution using HTML…

<img src="blah.gif" alt="bla" border="0" />

… though I think its probably better to do the solution using CSS.


img { border: 0; }

or (via CSS)

img {
border: none;
}

thanks!