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.