Reputation: 14361
I'm trying to do a simple animation on div items, everything works fine on Google Chrome, Safari and Firefox 4, but on Firefox 3 everything goes in unexpected way (div positions messes around and etc ). Maybe you know how to solve this issue and make it smooth?
Here is an example: http://jsfiddle.net/Q5FLQ/208/
Upvotes: 0
Views: 438
Reputation: 42818
Firefox does not like display:inline-block;
Instead use
display:inline;
float:left;
Upvotes: 1
Reputation: 5646
Look at this plugin, I think can help you
http://desandro.com/demo/masonry/docs/animating-jquery.html
Upvotes: 0