I want to develop some kind of utility bar. I can position each element in this bar side by side using float:left;
float:left;
But I want the second element to be p
Is this what you wanted? - http://jsfiddle.net/jomanlk/x5vyC/3/
Floats on both sides now
#wrapper{ background:red; overflow:auto; } #c1{ float:left; background:blue; } #c2{ background:green; float:right; } con1 con2