I am struggling to apply a CSS box shadow to a DIV element. Specifically, I want the shadow to appear only on the left and right sides of the element. I have tried using the following code:
box-shadow: 0 0 10px #000;
However, despite my efforts, the shadow does not display as desired. My goal is for the shadow to be 10px with a color of #000.
Any suggestions would be greatly appreciated. Thank you.