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:
On your site, this CSS rule is preventing box-shadow
from working in IE9:
table, table td {
border-collapse: collapse;
}
See: box-shadow on IE9 doesn't render using correct CSS, works on Firefox, Chrome
You must add
border-collapse: separate;
to the element thatbox-shadow
is not working on.
So, this should fix the problem for you:
.fancy {
border-collapse: separate;
}