圣杯布局

Posted 明明一颗大白菜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了圣杯布局相关的知识,希望对你有一定的参考价值。

描述:两边的内容变化,中间的内容不变

 

代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
padding: 0px;
margin: 0px;
}
section{
height:300px;
padding-left: 100px;
padding-right: 150px;
}
.content{
width: 100%;
height: 300px;
background-color: red;
float: left;
}
.left{
width: 100px;
height:300px;
background-color: yellow;
float: left;
margin-left: -100%;
position: relative;
left: -100px;
}
.right{
width: 150px;
height: 300px;
background-color: blue;
float: left;
margin-left: -150px;
position: relative;
left: 150px;
}
</style>
</head>
<body>
<section>
<div class="content"></div>
<div class="left"></div>
<div class="right"></div>
</section>
</body>
</html>

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

圣杯布局与双飞翼布局

三列布局(圣杯双飞翼)

flex做的圣杯布局

圣杯布局

圣杯布局和双飞翼布局

圣杯布局