码迷,mamicode.com
首页 > 其他好文 > 详细

圣杯布局

时间:2016-12-20 01:35:28      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:变化   html   add   idt   中间   har   color   body   back   

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

 

代码:

<!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>

圣杯布局

标签:变化   html   add   idt   中间   har   color   body   back   

原文地址:http://www.cnblogs.com/mmykdbc/p/6200986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!