I have a div box with box-shadow set around it with the following CSS:
-moz-box-shadow: 1px 1px 15px #415a68;
-webkit-box-shadow: 1px 1px 15px #415a68;
-khtml-box-shadow: 1px 1px 15px #415a68;
box-shadow: 1px 1px 15px #415a68;
What can I do to make box-shadow only apply to the left, right and bottom of the div?
You cannot do this with ONE.divEDIT
box-shadowdoes not allow right and left shadows at the same time.There is a trick, though…read on.
The rule takes four values:
That is all true. However, after some tests I found you can layer shadows.
All you need to do is separate the values with a comma.
So, for a left, right, and bottom shadow on one div, you can do this
Example: http://jsfiddle.net/jasongennaro/HWCzJ/1/