我希望孩子 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);}
然后它正在发生。