Reputation: 1397
I'm working on a design for a small page with css3 features being used.
For some reason I can't get -webkit-box-shadow working on this page (and just this page). I can't seem to figure out where I went wrong.
http://kin.remuria.net/flipfinder/test/
Anyone have any ideas what might be wrong with this page?
Upvotes: 1
Views: 3914
Reputation: 25766
Give your box shadow a color
box-shadow: 0px 4px 9px #000000;
EDIT:
If you want to support older versions of browsers that don't support the more standard box-shadow
property then using both proprietary prefixes -moz
-webkit
in combination with the box-shadow
property is fine.
Upvotes: 4