I have the following CSS shadow:
box-shadow:green 0 1px 3px;
Now, if I want to change only the direction of the shadow, I tried:
box-shadow:inherit 2px 0 inherit;
But this does not work unfortunately. Also it doesn't look like there are additional properties available like:
box-shadow-direction:2px 0;
Or
box-shadow-color:inherit;
How can the direction be changed without changing the color or strength?