一个页面中,不同子页面见高度不受影响的布局

父:

height: 100%;
overflow: hidden;
position: relative;

子:

position: absolute;
100%;
height: 100%;
overflow: auto;
top:0;
left:0;
(padding-bottom: 43px;
box-sizing: border-box;)------若底部为导航条时,设置,不设置box-sizing则padding无效

原文地址:https://www.cnblogs.com/hhweb/p/6557454.html