CSS Shadow Box around the DIV?

Moz-box-shadow: 0 0 3px #ccc; -webkit-box-shadow: 0 0 3px #ccc; box-shadow: 0 0 3px #ccc.

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.

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.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions