Reputation: 11059
I am developing this site.
Note that the images of the header and footer (facebook and twitter) are with an edge.
This edge appears only in IE9.
Both images are involved in the tag a.
Here is the complete code.
How can I remove this border? (which appears only in IE)
Upvotes: 2
Views: 2621
Reputation: 21
there is a border parameter in the img tag, when you insert a plain image ie ommits it, it does include it when you put a link on the image tho.
to prevent the border to appear, simply include the border param in your img tag.
<img src="some_img.jpg" border="0" alt="alt msg">
Upvotes: 2