What color do the *box-shadows default to if none is specified?
-webkit-box-shadow: 4px 4px 5px;
-moz-box-shadow: 4px 4px 5px;
box-shadow: 4px 4px 5px;
How can I set that color separately? (According to Is there a 'box-shadow-color' property? there isn’t a thing such as *box-shadow-color …)
See: https://developer.mozilla.org/en/css/box-shadow
You can only set the color inside
box-shadow, for example:You simply can’t set it separately, because as you pointed out, no
box-shadow-colorproperty exists.