I'm building a site for a restaurant and i found a glitch on Chrome.
In Chrome when you scroll all the way to the bottom of the page and the sub menu appears, when you hover over the text it seems to move up and down, the only hover action i programmed in was the opacity change. I'm not sure why that happens.
Edit: I found it has something to do with my
.nav ul li a:hover {
opacity: .6;}
when this is removed no hover effect is activated and this doesn't happen anymore..
more specifically i think its something to do with
-webkit-transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-ms-transition: opacity .2s ease-in-out;
-o-transition: opacity .2s ease-in-out;
transition: opacity .2s ease-in-out;