How would I get this to work in IE?
.fancy {
border: 1px solid black;
margin: 10px;
box-shadow: 5px 5px 5px #cccccc;
-webkit-box-shadow: 5px 5px 5px #cccccc;
-moz-box-shadow: 5px 5px 5px #cccccc;
}
Thanks
|
How would I get this to work in IE?
Thanks |
|||||||||||||||
|
|
box-shadow is supported from IE9 onwards. There are plenty of sites out there describing how to do this for older IEs. One of them is: http://www.useragentman.com/blog/2011/08/24/how-to-simulate-css3-box-shadow-in-ie7-8-without-javascript/ Also check out: http://www.css3.info/preview/box-shadow/ My personal opinion in general on making older browsers do things they actually cannot is this: Avoid it. Instead apply the principles of progressive enhancement. Also explain to your client that solving problems of outdated, non standard browsers with non standard solution, is very time consuming and probably not worth the effort. |
|||||||||||
|
|
On your site, this CSS rule is preventing
See: Issue with box-shadow on IE9
So, this should fix the problem for you:
|
|||
|
|
It works fine in IE 9. Earlier versions doesn't support
|
|||||||
|
|
You could also use http://css3pie.com/
|
|||
|
|
|
From google: Probably not exactly as you want it, but fiddle around with it or look into |
|||
|
|
|
On IE you need to use filter for that effect.
|
|||
|
|
|
I believe this issue is specific to your browser, because it works for me in this jsFiddle on both IE9 & Chrome. The link you provided works in Chrome, but not in IE9. This would indicate that the issue is specific to your implementation. I would check to make sure that compatibility mode is disabled, and also make sure you don't have any settings enabled that would interfere with CSS. I would also suggest testing this in multiple browsers and using process of elimination to determine why it isn't working. EDIT I was just looking at your markup. Try removing this line and see if it makes a difference:
|
||||
|
|
|
By default IE was setting up IE10 Compatibility mode which should be replaced with IE 9 using meta-tag. So, whenever it will be running on other browsers then it will use the CSS that will be compatible with IE9. As in IE10 Compatibility mode box-shadow CSS property has been removed from the library We can use meta-tag in head just to change the document compatibility level:
Above tag is showing that make this document compatible with IE8 and IE9 for browsers other than IE8 and IE9 switch CSS level to IE9. |
|||
|
|