子 div の.cell
高さが親の 100% の高さになるようにします。しかし、それは起こっていません。
HTML:
<div class="header">
header
</div>
<div class="wrapper">
<div class="padding">
<div class="table bg">
<div class="cell">
hello world
</div>
<div class="cell">
dummy text
</div>
</div>
</div>
</div>
<div class="footer">
footer
</div>
CSS:
html,body{height:100%;}
body{margin:0;padding:0;}
.footer,.header{background:black;height:30px;color:white;}
.wrapper{min-height:calc(100% - 60px);height:auto !important;}
.padding{padding:20px;}
.table{display:table;width:100%;}
.cell{display:table-cell;}
.bg{background:#ccc;}
私は持っているので、それは起こっていないと思います
.wrapper{min-height:calc(100% - 60px);height:auto !important;}
に変更.wrapper
すると発生します
.wrapper{height:calc(100% - 60px);}
それからそれは起こっています。