1.设置全局选择器
*{
box-sizing: border-box;
-webkit-box-sizing: border-box;
}
2.设置html与body
html,body{
height: 100%;
}
3.实现上中下结构的自适应实例展示:
.header{
background: red;
height: 140px;
margin-bottom: -140px;
position: relative;
}
.mid_content{
background: gold;
min-height: 100%;
padding: 140px 0px 150px 0px;
}
.footer{
background: blanchedalmond;
height: 150px;
margin-top: -150px;
}
4.效果展示,不管界面大小怎么改变,上中下结构始终不变.