Just a quick simple question, this css code will not work in ie8 for a drop shadow, any ideas why it wouldn't work?

/* Drop shadow */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.7);
-moz-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.7);
-o-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.7);
-webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.7);
link|improve this question

I have never seen CSS like this. Can't you use shadow images instead? – Midas May 26 '11 at 20:37
1  
@Midas it is CSS3 and one of its benefits is that you do not have to use images any more :-) – andyb May 26 '11 at 20:59
I find -ms-filter to be redundant and unnecessary for IE8. You found the code here: robertnyman.com/2010/03/16/… – JohnB Dec 17 '11 at 19:20
feedback

2 Answers

up vote 2 down vote accepted

I am not sure if this is an IE8 bug but if you add a background-color it seems to work as expected.

In Chrome, removing the background-color leaves the drop shadow, but in IE8 the text inherits the drop shadow and looks awful. If you have a solid background you could match the background on the elements you want the drop shadow on. Unfortunately transparent results in the same problem in IE8.

link|improve this answer
you can easily get rid if it by using css-tricks.com/how-to-create-an-ie-only-stylesheet – Jung3o May 26 '11 at 20:59
Thank you for the advice. – Dennis Martinez Jun 1 '11 at 18:15
It's not a bug. Without the background color, filter: progid:DXImageTransform.Microsoft.Shadow() creates a shadow for the text only. box-shadow is a CSS3 property for box shadows. So to get the same effect in IE, you have to specify a box. This was the correct solution to the problem though. +1 – JohnB Dec 17 '11 at 19:19
feedback

Specifying a width on the element with the shadow filter fixed a similar issue for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.