In this setup http://jsfiddle.net/PRX88/10/ the thrid div understandably appears to the right of the second div, although there's space for it to the right of the first div - it is stopped from appearing above the second div.
How would I get the third div to sit to the right of div one (in the current black space) without:
- using absolute/relative positioning
- relying on height values (in my real world example this is variable)
- without reordering the divs (I understand semantically this isn't best practice but it's for something quite specific)
Thanks