在做圣杯布局时用到
大概就是将元素定位设置为position:absolute;
然后同时设置top和bottom确定高度
或者同时设置left和right确定宽度
<style>
.absflex_cont{
border:1px solid #bababa;
position:absolute;
z-index: 2;
right:0;
bottom:0;
top:0;
width:360px;
background:#0632B0;
}
</style>
这样这个元素高度为整屏