CSS side by side div's auto equal widths

前端 未结 5 1648
独厮守ぢ
独厮守ぢ 2020-11-28 23:30
5条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-29 00:04

    in modern browsers, you can use flexbox

    three divs example

    two divs example

    CSS:

    #wrapper {
        display: flex;    
        width:90%;
        height:100px;
        background-color:Gray;
    }
    #wrapper div {
        flex-basis: 100%;
    }
    

    HTML:

    one one one one one one one one one one one one one one one one one one one one one
    two two two two two two

提交回复
热议问题