I've hit this one a couple of times in the past and never walked away with a good solution. If I have several HTML elements that are positioned according to natural document flow. For the sake of example, let's say it's a simple stack of divs. I would like to use CSS3 transitions to smoothly move one of those elements to a fixed location of the page (say 0,0) and then back to it's normal position.
The problem is that changing the position style attribute to absolute or fixed if it wasn't there before will cause the position to snap and ignore any transition instructions. As such I would imagine that any such transition would involve some sort of javascript component to figure out where the element currently is and how far off from the desired point it is and so on and then dynamically build the CSS style from that.
That feels like an awful lot to go through for what seems like a trivial-ish case, though. Is there a better way?