Position a div container on the right side

前端 未结 5 1919
粉色の甜心
粉色の甜心 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:00

    Just wanna update this for beginners now you should definitly use flexbox to do that, it's more appropriate and work for responsive try this : http://jsfiddle.net/x5vyC/3957/

    #wrapper{
      display:flex;
      justify-content:space-between;
      background:red;
    }
    
    
    #c1{
       background:blue;
    }
    
    
    #c2{
        background:green;
    }
    
    
    con1
    con2

提交回复
热议问题