Getting 2 divs on the same line

后端 未结 5 1893
梦如初夏
梦如初夏 2021-01-22 05:53

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

5条回答
  •  走了就别回头了
    2021-01-22 06:25

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

提交回复
热议问题