.app{
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
background-color: antiquewhite;
}
重点是position: absolute;和bottom: 0;
这样就可以实现盒子盛满页面高度,不会出现滚动条
.app{
width: 100%;
height: 100%;
position: absolute;
bottom: 0;
background-color: antiquewhite;
}
这样就可以实现盒子盛满页面高度,不会出现滚动条