Getting 2 divs on the same line

后端 未结 5 1485
离开以前
离开以前 2021-01-22 05:29

I\'m trying to get 2 divs on the same line, I\'ve got

5条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-22 06:03

    #NavigationMenu {
        float: left;
    }
    
    .SearchBox {
        float: right;
    }
    
    .MenuDiv {
        overflow: hidden; /* adjusts the height of .MenuDiv to wrap its children */
    }
    

提交回复
热议问题