height:100% inside table-cell not working on Firefox and IE

前端 未结 2 1219
暗喜
暗喜 2020-12-10 01:43

I\'m having some troubles trying to create a div with height:100% inside a wrap with display:table-cell.

I\'ve noticed it doesn

2条回答
  •  盖世英雄少女心
    2020-12-10 02:29

    You must set the .content and .table .table-cell classes as below

    .content {
        display: table;
        height: 100%;
    }
    
    .table, .table-cell {
        height: 100%;
    }
    

提交回复
热议问题