After searching online for how to add shadows to my containers, I came across this code that I applied to my divs:
.boxShadow {
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
}
Now, with this code, my divs look great in Chrome and Firefox.
However, when viewing them in IE 9, the style appears different. The shadow is also affecting the characters themselves. I realize that styles can vary between browsers, but I'm curious as to why this is happening and if there's a way to fix it. Thank you for any assistance!