So i have the following css transitions attached to the a element:
a { -webkit-transition:color 0.1s ease-in, background-color 0.1s ease-in ; -m
You could also disinherit all transitions inside a containing element:
CSS:
.noTrans *{ -moz-transition: none; -webkit-transition: none; -o-transition: color 0 ease-in; transition: none; }
HTML:
Content Content Content Content