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
float: right
overflow: hidden
Live Demo
#wrapper{ background:#000; overflow: hidden } #c1 { float:left; background:red; } #c2 { background:green; float: right }