I have three divs on the page, all floating side by side. Using the css scale method, I scale the middle div to 0.5. It works well.
The only problem is that scaling a div does not affect the position of other divs. It seems that the scalable div still has an invisible container with the original scale. The desired result is that after scaling, the fields remain unchanged.
I added an example: http://jsfiddle.net/yxYdd/3/ (In real life, the middlemost div is filled with many other elements)
Is there a neat way to not mess with fields, etc., so that scaling affects the positioning of other divs?
source share