salescrm/b/test/t.html
2025-10-27 15:50:44 +08:00

47 lines
973 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>css上中下布局上下固定中间自适应滚动</title>
<style>
html, body {
/* 重点,不能少 */
height: 100%;
/* 这里一定要写上,否则外层会出现滚动条 */
margin: 0;
padding: 0;
}
.wrap {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
header, footer {
height: 100px;
width: 100%;
background-color: pink;
}
.main {
width: 100%;
flex: 1;
overflow: auto;
}
</style>
</head>
<body>
<div class="wrap">
<header>header</header>
<div class="main">
<p style="height: 500px">123</p>
<p style="height: 500px">456</p>
</div>
<footer>footer</footer>
</div>
</body>
</html>