Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a div, which has a number of child divs with float: left;. Depending on the size of the screen, the parent div will change shape, causing the child divs to wrap into different positions.

Is there a way to make the child divs transition to their new positions using CSS3 animation? I've tried the following on the child elements:

-webkit-transition: top, left;
-webkit-transition-timing-function: linear;
-webkit-transition-duration: 150ms;

But it doesn't work, I assume because I'm not setting the left and right properties explicitly when the children are reorganised.

Any help with this would be greatly appreciated!

Cheers.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.