I'm just getting into CSS3 transitions (about time!) and I witness some strange behavior in Opera 11.60.
I use a transition to change an element from background:none to background:#fff. However, the transition actually goes through black/dark grey before reaching its target.
Now, I can understand why this happens - the opacity and the color are animated at the same time, and since the color used to be none, Opera regards it as #000. Looks like a bug to me.
Is there a way to fix this, save for turning off transitions in Opera for elements with background:none?