I wish this fiddle can explain what I want.
When I have a layout with 3 columns (one left, one right and the last on center (without flot set on CSS), the layout is perfect! But, if I want to add some elements in the center space with float set in CSS, if I set a “clear:left;”, I get the new elements at the end of the content of left column… It’s annoying result!
However, if you see my fiddle, you can understend more better what I want.
If i understant you correctly you cant add element on center with
clear:left;, no reason to do that. Give all element todisplay: inline-block;vertical-align:top;then set up your html like that. They will be one left, one right and the last on center, and a unwanted element.