<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
}
.box {
width: 100%;
height: 100%;
}
.header {
width: 100%;
height: 50px;
background: red;
}
.content {
width: 100%;
height: calc(100% - 100px);
overflow: auto;
}
.content p{
height: 300px;
}
.footer {
width: 100%;
height: 50px;
background: red;
}
</style>
</head>
<body>
<div class="box">
<div class="header"></div>
<div class="content">
<p>5555555555555555555555</p>
<p>5555555555555555555555</p>
<p>5555555555555555555555</p>
<p>5555555555555555555555</p>
<p>5555555555555555555555</p>
</div>
<div class="footer"></div>
</div>
</body>
</html>
标签:5555555555555555555555,100%,height,content,width,red,头部,滑动,CSS
From: https://www.cnblogs.com/Listener-wy/p/18233430