三明治布局
Posted chuanzhi946
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三明治布局相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
header {
position: absolute;
width: 100%;
height: 60px;
top: 0;
background-color: red;
}
.content {
position: absolute;
width: 100%;
top: 60px;
bottom: 60px;
overflow-y: scroll;
overflow-x: hidden;
}
.blue {
height: 2000px;
background-color: blue;
}
.yellow {
height: 2000px;
background-color: yellow;
}
footer {
position: absolute;
width: 100%;
height: 60px;
bottom: 0;
background-color: red;
}
</style>
</head>
<body>
<header></header>
<div class="content">
<div class="blue"></div>
<div class="yellow"></div>
</div>
<footer></footer>
</body>
</html>
以上是关于三明治布局的主要内容,如果未能解决你的问题,请参考以下文章