CSS styling - how to put these two div boxes adjacent

前端 未结 5 670
春和景丽
春和景丽 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:31

    Add float:left;:

    #fact, #sortbar{
      float:left;
      margin-left:10px;
    }
    

    See the working demo here.

提交回复
热议问题