In Internet Explorer versions 7 and 8, I have implemented a box shadow using the following CSS:
box-shadow: 0px 0px 15px #FF00CC;
-o-box-shadow: 0px 0px 15px #FF00CC;
-moz-box-shadow: 0px 0px 15px #FF00CC;
-webkit-box-shadow:0px 0px 15px #FF00CC;
zoom: 1;
filter: progid:DXImageTransform.Microsoft.Shadow(Color=#ff99eb, Strength=7, Direction=0),
progid:DXImageTransform.Microsoft.Shadow(Color=#ff99eb, Strength=7, Direction=90),
progid:DXImageTransform.Microsoft.Shadow(Color=#ff99eb, Strength=7, Direction=180),
progid:DXImageTransform.Microsoft.Shadow(Color=#ff99eb, Strength=7, Direction=270),
progid:DXImageTransform.Microsoft.Chroma(Color='#ffffff');
background-color:#FFFFFF;
border:1px solid #FF00CC;
The box shadow effect is being applied successfully, but it is causing the text inside to appear blurred. The black text is losing its crispness as shown in the images above.
I have also included a comparison without the box shadow properties which shows the text looking normal.
Is there a way for me to achieve the box shadow effect while keeping the inside text sharp and clear?