Looking to achieve a box shadow effect on just the left and right sides of a div?
box-shadow: 0px 0 20px rgba(0,0,0,.4);
I experimented with variations like:
box-shadow: 0, foo, 0, foo;
but it did not yield the desired results.
In the illustration below, my goal is to eliminate the bottom line (while also removing the top one, although it's not visible in this image).
If possible, I would like to avoid using an image for this purpose.