Make child divs expand to fill parent div's width

后端 未结 3 553
借酒劲吻你
借酒劲吻你 2021-02-05 11:40

So I have three divs inside one div.

Text
Text
3条回答
  •  没有蜡笔的小新
    2021-02-05 12:20

    I needed for my solution to accommodate a variance in the number of elements for them to be completely responsive.

    I discovered an interesting solution to this. It essentially displays like a table. Every element shares available width, and this also works for images very well: http://jsfiddle.net/8Qa72/6/

    .table {
        display: table;
        width: 400px;
    }
    
    .table .row {
        display: table-row;
    }
    
    .table .row .cell {
        display: table-cell;
        padding: 5px;
    }
    
    .table .row .cell .contents {
        background: #444;
        width: 100%;
        height: 75px;
    }
    

提交回复
热议问题