I just want to apply text shadow to <span> elements in Internet Explorer 6-9. I'm using the following CSS code.

.dropShadow { filter: dropshadow(color=#ffff00,offX=5,offY=5); }
.glow       { filter: glow(color=#ff0000); }
.shadow     { filter: shadow(color=#00ff00); }

With this HTML:

<span class="dropShadow">span with dropShadow</span>
<p class="dropShadow">paragraph dropShadow</p>
<span class="glow">span with glow</span>
<p class="glow">paragraph with glow</p>
<span class="shadow">span with shadow</span>
<p class="shadow">paragraph with shadow</p>

The result is that only <p> elements will receive the dropShadow, glow and shadow styles. But <span> will not get styles applied. Why?

There is a live example (jsfiddle). I have used IE9.

link|improve this question

I don't have IE9 handy but maybe they need layout? Try adding zoom: 1 to the span's CSS definition – Pekka Jan 23 at 21:49
1  
Thanks @Pekka, but triggering has:layout (using zoom: 1) doesn't do the trick. – Rubens Mariuzzo Jan 23 at 21:56
1  
@Pekka - haslayout does not exist in IE9 and disappeared in IE8. – Rob Jan 23 at 22:31
@Rob ahh, good to know. About time. Thanks! – Pekka Jan 23 at 22:34
feedback

1 Answer

up vote 2 down vote accepted

You could add display:inline-block to your spans.

http://jsbin.com/ipiqak/edit#preview

link|improve this answer
1  
This works! Thanks! Can you add more information to your answer then it will be of help for others. – Rubens Mariuzzo Jan 23 at 21:55
@RubensMariuzzo, No, I took a shot in the dark and it worked. Sorry about that. :P – Walkerneo Jan 23 at 22:01
No problem, I appreciate your sincerity. – Rubens Mariuzzo Jan 23 at 22:04
feedback

Your Answer

 
or
required, but never shown

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