views:

25

answers:

2

Is there anyway to do this for IE8?

    -moz-box-shadow: 0px 0px 14px #585858; /* FF3.5+ */
    -webkit-box-shadow: 0px 0px 14px #585858; /* Saf3.0+, Chrome */
    box-shadow: 0px 0px 14px #585858; /* Opera 10.5, IE 9 */

    -moz-border-radius: 6px;
    border-radius: 6px;
+1  A: 

IE8 is not compatible with either drop shadows or rounded corners.

Drop shadows and rounded corners are usually best done with png images, then hacked for IE6.

Alternatively you could use something like spiffy corners (http://www.spiffycorners.com/) for rounded corners.

laurencek
+2  A: 

You can do this with CSS3PIE. It adds rounded corners, drop-shadow and gradient background support for IE.

Hope this helps !

FreekOne
+1 for CSS3Pie -- a spectacularly good product; blows all the other solutions out of the water. It basically gives CSS-based rounded corners and drop shadows to all versions of IE (even IE6).
Spudley