Emanuele D'Arrigo wrote:
I guess as long as flexboxes can be contained in a cssboxes and viceversa we can all be pretty happy campers. =) I wonder if that's already possible...
Yes, of course. You can do it in Gecko and Webkit.
Given a box with a defined orientation, I wouldn't have thought so! Can you give me a simple example of flexboxes where height and width interdependent?
Sure. Any hbox that contains a CSS block has a height that depends on the width it gives that block. At the same time, its width depends on the widths of its kids, which might depend on the heights of its kids, which have to end up equal to its height, no?
This is why the flexbox layout algorithm ends up with a loop you keep doing over and over until the numbers converge (or until you end up with too many iterations).
-Boris _______________________________________________ dev-tech-layout mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-layout

