三明治布局

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>

以上是关于三明治布局的主要内容,如果未能解决你的问题,请参考以下文章

静态布局流式布局自适应布局弹性布局响应式布局

「布局」静态布局、自适应布局、流式布局、响应式布局、弹性布局简析

静态布局流式布局自适应布局弹性布局响应式布局

静态布局流式布局自适应布局弹性布局响应式布局

静态布局流式布局自适应布局弹性布局响应式布局

前端—— 高级布局:文档流浮动布局流式布局定位布局flex布局响应布局