CSS styling - how to put these two div boxes adjacent

前端 未结 5 711
春和景丽
春和景丽 2020-12-16 01:55

I have two divs inside a div, I want them both adjacent to each other with a margin of 10px or so separating them but instead they appear one above the other.



        
5条回答
  •  被撕碎了的回忆
    2020-12-16 02:29

    Something like this should do it...

    #fact {
        width:200px; 
        float: left;
        margin: 0 10px 0 0;
    } 
    #sortbar {
        float: left;
    }
    

提交回复
热议问题