When I remove an item from a flexbox, the remaining items \"snap\" into their new positions immediately rather than animating.
Conceptually, since the items are chan
I accidentally got it to work in a simple way. Basically, you set width:0;flex-grow:1 and of course add transition:all 2s; and that's it. It's a curious hack.
width:0;flex-grow:1
transition:all 2s;
See it working