CSS Transition for only one type of transform?
Is it possible to animate (using transitions) only one type of css transform? I have css: cell{ transform: scale(2) translate(100px, 200px); transition: All 0.25s; } Now, I want only scale to be animated. In this case I could use position:absolute and left/right properties but I far as I remember, translate() is much better in performance. I would also like to avoid using additional html elements. Fiddle: http://jsfiddle.net/6UE28/2/ Yes! You separate it into two selectors, one of them with transition: none , then trigger CSS reflow in between to apply the change (otherwise it will be