Position elements with the div tag

前端 未结 5 1604
失恋的感觉
失恋的感觉 2021-01-28 03:50
5条回答
  •  走了就别回头了
    2021-01-28 04:20

    quick to do ...

    #HeadPanel
    {
        display: inline;
        width: 100%;
    }
    
    .HeadPanelElement
    {
        width: 10%;
        /* or 
        padding: 10px; */
    }
    

    the real factor here is the display: inline; which will layout the div in a side by side fashion.

提交回复
热议问题