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

圣杯布局

时间:2015-06-09 11:21:00      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
*{
    margin: 0;
    padding: 0;
}
div{
    height: 500px;
}
.left{
    width: 200px;
    background-color: red;
    position: absolute;
    left: 0;
    top: 0;
}
.right{
    width: 200px;
    background-color: yellow;
    position: absolute;
    right: 0;
    top: 0;
}
.center{
    margin: 0 200px;
    background-color: green;
}
</style>
</head>
<body>
<div class="center"></div>
<div class="left"></div>
<div class="right"></div>
</body>
</html>

 

圣杯布局

标签:

原文地址:http://www.cnblogs.com/pan-hello/p/4562679.html

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