Last year I spent a long time reading up on javascript performance, bottlenecks and best practices. On my latest project I'm using CSS3 with fallbacks to javascript/jquery for basic animations and effects such as hovers and am interested in experimenting with CSS3 further.
Are there issues with CSS3 performance?
If yes, what are the best practices?
For example does transition: all 150ms ease-out;
use more memory than transition: opacity 150ms ease-out, background-color 150ms ease-out;
?
[please don't just answer my example question!]