Skip to content Skip to sidebar Skip to footer

Divs Jitter When Hovering Between Them Quickly

I have the following html code:

Solution 1:

Its seems to be a bug with the way the divs are 'displacing' each other on hover.

Try adding this to your css:

div.project {
  ...
  float: left;
}

Working JS fiddle: http://jsfiddle.net/f8Laktoz/1/

Post a Comment for "Divs Jitter When Hovering Between Them Quickly"