Split Div Into 2 Columns Using CSS

后端 未结 14 1883
故里飘歌
故里飘歌 2020-11-29 18:01

I have been attempting to split a div into two columns using CSS, but I have not managed to get it working yet. My basic structure is as follows:

14条回答
  •  半阙折子戏
    2020-11-29 18:54

    Make children divs inline-block and they will position side by side:

    #content {
       width: 500px;
       height: 500px;
    }
    
    #left, #right {
        display: inline-block;
        width: 45%;
        height: 100%;
    }
    

    See Demo

提交回复
热议问题