I have a css translate happening on hover. It only affects the Y axis but it is jumping around. This makes the hover effect look wonky.
-webkit-transform: translate(0,5px);
The effect is on the main navigation. You can see it here: http://pineriver.com
Is this related to rounding or text pixel snapping? If so, I don't like it :)
You can see I've already tried tricks like opacity:.99
.
I've worked around the problem by by using traditional top:
and bottom:
to do the translations, but I still am curious why this happens. I would really like to be able to use css translates to do visual butter things like this.