<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<style type="text/css">
* {
padding: 0;
margin: 0
}
html,
body,
#wrap,
#home {
height: 100%;
width: 100%;
}
#wrap {
display: flex;
flex-direction: column;
}
header {
height: 120px;
font-size: 42px;
text-align: center;
line-height: 120px;
}
article {
display: flex;
flex: 1;
overflow-y: auto;
font-size: 50px;
}
article>div {
flex: 1
}
footer {
display: flex;
height: 160px;
font-size: 42px;
align-items: center;
}
footer>p {
flex: 1;
text-align: center;
}
</style>
</head>
<body>
<div id="wrap">
<header>头部</header>
<article>
<div>
<p>1</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>2</p>
<p>0</p>
</div>
</article>
<footer>
<p>底部导航</p>
</footer>
</div>
</body>
</html>