There are some css properties that can only(as far as I know) be modified as a set of values, like text-shadow (text-shadow:<xOffset> <yOffset> <radius> <color>;
). I've seen some referred to as shorthand values, even though I've never seen the longer syntax version.
So, in a nutshell I'd like to modify individual parts of a declaration like in the example code below in an Fx.Morph transition without resorting to transition-specific hacks:
text-shadow:1px 1px 2px rgba(0,0,0,0.5)
Let's say I need to fade the shadow out. How would I accomplish that?