首页 > 代码库 > 圣杯布局
圣杯布局
描述:两边的内容变化,中间的内容不变
代码:
<!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>
圣杯布局
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。