Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 box-shadow : is there a "box-shadow-color" ? there isn't a thing such as *box-shadow-color ...)

share|improve this question

2 Answers

up vote 2 down vote accepted

See: https://developer.mozilla.org/en/css/box-shadow

<color> (optional)
See <color> values for possible keywords and notations. If not specified, the color depends on the browser. In Gecko (Firefox), the value of the color property is used. WebKit's shadow is transparent and therefore useless if <color> is omitted.

You can only set the color inside box-shadow, for example:

box-shadow: 4px 4px 5px #ccc;

You simply can't set it separately, because as you pointed out, no box-shadow-color property exists.

share|improve this answer
2  
Too bad webkit doesn't default to color or some other property... – Kawu Jun 22 '11 at 1:11

While there isn't a box-shadow-color property yet, box-shadow defaults to color, just like border does.

In practice, you have to change the color property and leave box-shadow without a color:

box-shadow: 1px 2px 3px;
color: #a00;'

Check out the demo

Support:

  • Safari 6+
  • Chrome 20+ (at least)
  • Firefox 13+ (at least)
  • (IE not tested)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.