Hi,
Is there any way I could accomplish what I'd like to call a vertical stackpanel with html and css without changing the html structure of this sample:
The desired behaviour is that "Item 4" in the sample should jump up and be displayed next to "Item 1". The container could change in size and items should always fill up vertically as long as there is room, and then start a new column to the right.
Ideally I'd like a CSS only solution to this, next best would be an existing javascript solution that I suppose would inspect the elements sizes, listen to any size changes and inject additional markup to left float each column. Third best is that I will have to write that javascript solution myself...
Any input to this problem is appreciated.
/Dan