IE follows the web browser tradition of drawing a colored border around an image that is a link (technically, an img
element inside an a
element that has the href
attribute). This was meant to make the user notice that the image is a link.
To remove the border, use the attribute border=0
in the img
tag or use a corresponding CSS rule, like img { border: none }
.
1
solved IE Compatibility Problems [closed]