I've used css3's box-shadow not to create an shadow but to add an glow effect. It works just fine but of course except for IE. Is there some workarround to make it possible in IE?
The css I'm using right now:
-webkit-box-shadow:0 0 5px #666;
-moz-box-shadow: 0 0 5px #666;
box-shadow:0 0 5px #666;
I already looked at IE PIE but it doesn't work because I use too much z-index. Also
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
won't work, it does display shadow but I can't seem to make it look like an glow effect.
Does someone know another workaround?