Looking to modify the direction of a CSS shadow without adjusting the color or strength?
box-shadow:green 0 1px 3px;
I attempted to change the shadow direction only with the following code:
box-shadow:inherit 2px 0 inherit;
Unfortunately, this approach did not yield the desired result. It seems that there are no additional properties such as:
box-shadow-direction:2px 0;
Or
box-shadow-color:inherit;
Is there a way to adjust the direction without impacting the color or strength of the shadow?