Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<li><a href="#" ><img src="images/hospitality.png" title="" /></a>

Problem- image is getting displayed inside a blue rectangle box in IE and Mozilla but not in Chrome.How can I remove that blue box from IE also?

share|improve this question
2  
The answer that didn't include the CSS inline is a better one. You ought to have accepted it. – icio Jun 10 '10 at 10:14

3 Answers

up vote 8 down vote accepted

Or add it inline to the img element:

<li>
    <a href="#">
        <img style="border: 0;" src="images/hospitality.png" title="" />
    </a>
</li>
share|improve this answer

You can set this CSS to remove the blue border on every image within a link:

a img {
    border: 0;
}
share|improve this answer

The "border=0" solution works, but it is not very easy to implement since it requires its addition in every and each link image you put in your project.

The better solution is to include the following tag within your page's <head>...</head> tags, which can be in a master page so that all the inner pages will inherent it from the master page

<style type="text/css">
    <!--
    img { border: none; }
    -->
</style>
share|improve this answer

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.