internet explorer - How do you make the CSS shadow look the same in IE? -


here link: link text

the shadow on slider looks great in safari, firefox, etc., how make same in ie?

here current css code:

-moz-box-shadow: 0px 0px 6px #666;           -webkit-box-shadow: 0px 0px 6px #666; box-shadow: 0px 0px 6px #666; 

try works in ie 6+ too

.shadow { zoom:1; /* enables haslayout, required older ie browsers */         filter: progid:dximagetransform.microsoft.shadow(color='#b0b0b0', direction=135, strength=3);         -moz-box-shadow:2px 2px 2px #b0b0b0;         -webkit-box-shadow:2px 2px 2px #b0b0b0; box-shadow:2px 2px 2px #b0b0b0;} 

Comments

Popular posts from this blog

Add email recipient to all new Trac tickets -

400 Bad Request on Apache/PHP AddHandler wrapper -

php - Change action and image src url's with jQuery -