首页 > 其他 > 详细

圣杯布局

时间:2015-06-09 11:17:51      阅读:148      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!