I\'d like to apply a CSS transition to all properties apart from background-position. I tried to do it this way:
.csstransitions a { -webkit-transition:
You can try using the standard W3C way:
.transition { transition: all 0.2s, top 0s, left 0s, width 0s, height 0s; }
http://jsfiddle.net/H2jet/60/