Position a div container on the right side

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

    • Use float: right to.. float the second column to the.. right.
    • Use overflow: hidden to clear the floats so that the background color I just put in will be visible.

    Live Demo

    #wrapper{
        background:#000;
        overflow: hidden
    }
    #c1 {
       float:left;
       background:red;
    }
    #c2 {
        background:green;
        float: right
    }
    

提交回复
热议问题