Split Div Into 2 Columns Using CSS

后端 未结 14 1886
故里飘歌
故里飘歌 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:38

    Best way to divide a div vertically --

    #parent {
        margin: 0;
        width: 100%;
    }
    .left {
        float: left;
        width: 60%;
    }
    .right {
        overflow: hidden;
        width: 40%;
    }
    

提交回复
热议问题