Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a navigation bar which consists of a <img> elements within their respective <a> elements. However, for some reason in IE its making a dark black border around the images. Its not doing the same in other browsers, I can't seem to figure this out... This is the html that I'm using.

<li>
   <a href="#">
      <span id="nav1">
         <img src="tt_1.png" />
      </span>
   </a>
</li>

I have about 5 links all written like that and I've used CSS to style it into a nav bar. On other browsers it comes out like this good bar

but on IE it comes out like this Bad bar :(

I've never encountered a problem like this before and what I've reserached to try and fix it so far haven't worked. Is there a way to take out these borders using CSS?

share|improve this question

3 Answers

up vote 42 down vote accepted

Try this css

a, img {
    border:none;
}

This will remove borders from all links and images.

share|improve this answer
I have added an outline:none style to remove the dotted border around active links in IE. – Olexander Feb 15 at 1:30
Jonathan Newmuis's answer is more correct – Jacob Dorman May 13 at 6:00

I believe IE puts borders around images that are links. So you should be able to remove this by saying:

a img {
    border: 0;
}
share|improve this answer
5  
I think this is the best answer because it achieves the specific intent, the accepted answer might have unintended consequences. – cmsjr Nov 5 '12 at 21:45

add style="border: none;" to whatever creates the border or create a css with this attribute.

share|improve this answer
1  
This was downvoted. I still find that this is useful when applying the style to only one element. This is also a good practice when sending HTML emails, in which case you can't create a CSS rule. – Sam Pellino Dec 17 '12 at 17:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.