Click here to Skip to main content
15,888,321 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

I have written HTML pages where i have used CSS to give effect to images. The code works fine on mozilla and chrome but fails to work on IE. The image is getting some background effect in IE where in mozilla and chrome there is no background effect.
The code in my css file is:

CSS
.imgCustom
     {
      width:110px;
     height:70px;
background-image:none;
     }

.imgCustom1
     {
      width:90px;
     height:50px;
background-image:none;
     }

a img {
border:none;
}


Let me know what i need to change or include to avoid this.
Posted
Comments
Sergey Alexandrovich Kryukov 24-Aug-13 0:22am    
What "background effect"? Your style don't define any backgrounds...
—SA
archies_gall 24-Aug-13 1:34am    
Right so why do i get blue kind of background in IE in the buttons which i have used?
Mohibur Rashid 24-Aug-13 1:37am    
Where do you get your background blue? what element?
archies_gall 24-Aug-13 1:47am    
eg: i have this line included in my html page
<td align="center"><img class="imgCustom" src="../Images/awards.png"></td>

this image doesnt have any background effect in mozilla and chrome but gets blue kind of background in IE
Sergey Alexandrovich Kryukov 25-Aug-13 14:42pm    
I bet some information is missing. There is nothing blue in your code...
You may need to provide minimized but complete HTML to manifest the problem.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900