Position a div container on the right side

前端 未结 5 1918
粉色の甜心
粉色の甜心 2020-12-25 11:33

I want to develop some kind of utility bar. I can position each element in this bar side by side using float:left;

But I want the second element to be p

5条回答
  •  一整个雨季
    2020-12-25 12:14

    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

提交回复
热议问题