I'm working with a box-shadow inset effect using CSS3:
box-shadow: inset 0 0 10px 0 rgba(255, 255, 255, 1);
The inset effect is applied to all sides of the box, but I only want it on the Left, Bottom, and Right sides - not the top. Is there a way to remove the effect from the top while keeping it on the other three sides?
Appreciate any help!