CSS float equivalent

Is there any easy way to make elements “float” in their parent container, like in css? Something like this: http://scratchpad.io/windy-salt-353

There is currently no way to make text wrap around elements, like float in CSS. Is that the effect you are looking for?

No, I’m just trying to make a somewhat reactive layout, that will fill up the available space with elements, depending on the orientation of the device, and current dpi/dpp.

This type of layout can be done with a WrapPanel. It flows its children along rows or columns to fill the available space.

Perfect, thanks!