IMG Hover CSS Not working in iInternet Explorer

Hello all,

I have implemented a basic image hover command in CSS its working smoothly in safari, firefox and chrome however Internet Explorer doesnt recognise the command and the image remains static any thoughts

Code:
#gallery img:hover{  -moz-transform:scale(1.9);  -webkit-transform:scale(1.9);}
 
it wont work in ie - your commands are css3 (non ratified) which ie8 and below doesn't support

ie may have custom commands to do the same or it's down to javascript.
 
You'll need to use javascript for it to work in IE.
But honestly, perhaps you shouldn't bother at all. What's the site for?
 
Just for a company to highlight there portfolio of there work. The ability to zoom in on images is very important to them
 
glen it might be with older browsers but when css3 supports zooming and removes the longer javascript with a simple css command you can understand why people want everything standardised
 
Back
Top