Good ol' Internet Explorer will not display the box shadow I've given it. It displays fine in every other browser. I figured at first, maybe it was a separate container issue, but that wasn't it. I added another div with the shadow atop and it still didn't display? I am not sure as to why. Fiddle attached is what I am trying to replicated.
Fiddle: http://jsfiddle.net/GYf29/
body {
background:gray;
}
.contain {
width:200px;
height:200px;
background:url(http://upload.wikimedia.org/wikipedia/commons/6/6e/The_sun1.jpg) -175px -175px;
border:5px solid white;
box-shadow: inset 0 0 20px #444;
}
<div class="contain"></div>