Is it possible to have the shadow to surround the DIV around it?

-moz-box-shadow: 3px 3px 3px #ccc;
-webkit-box-shadow: 3px 3px 3px #ccc;
box-shadow: 3px 3px 3px #ccc;

I know the that in order it

  • Horizontal offset
  • Vertical offset
  • Blur radius
  • Color

But I wonder if it's possible to make the shadow around it. If so, do you have examples?

link|improve this question

1  
Why a 5px blur for Mozilla and WebKit but 3px for others? – BoltClock Jul 25 '11 at 19:36
Because I was on Chrome when testing it, so i've only changed the box-shadow... sorry – Warface Jul 25 '11 at 19:38
feedback

3 Answers

up vote 4 down vote accepted

Just zero the offsets?

-moz-box-shadow: 0 0 3px #ccc;
-webkit-box-shadow: 0 0 3px #ccc;
box-shadow: 0 0 3px #ccc;
link|improve this answer
feedback

Yes, don't offset vertically or horizontally, and use a relatively large blur radius: fiddle

Also, you can use multiple box-shadows if you separate them with a comma. This will allow you to fine-tune where they blur and how much they extend. The example I provide is indistinguishable from a large outline, but it can be fine-tuned significantly more: fiddle

You missed the last and most relevant property of box-shadow, which is spread-distance. You can specify a value for how much the shadow expands or contracts (makes my second example obsolete): fiddle

The full property list is:

box-shadow: [horizontal-offset] [vertical-offset] [blur-radius] [spread-distance] [color] inset?

But even better, read through the spec.

link|improve this answer
feedback

If the shadow blur is big enough, it will be all around, e.g.

   -webkit-box-shadow: 5px 5px 15px #888;
    -moz-box-shadow: 5px 5px 15px #888;
    box-shadow: 5px 5px 15px #888;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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