For example I have 3 divs within a container. the container has a fixed height. I want the inner divs which have dynamic height to be positioned over each other, then the remaining divs which do not fit in the container under the other divs to be floated as if there is a second column.
<div style="" class="Continer">
<div class="d1">
text text text <br />
text text text <br />
text text text <br />
text text text <br />
text text text <br />
</div>
<div class="d2">
text text text <br />
text text text <br />
text text text <br />
text text text <br />
text text text <br />
text text text <br />
</div>
<div class="d3">
text text text <br />
text text text <br />
text text text <br />
text text text <br />
text text text <br />
</div>
Please check this fiddle
So in the fiddle above I want the third div to be floated dynamically as it does not fit under other divs within the container.
How can I achieve that