圣杯布局

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

 

posted @ 2015-06-09 10:06  心胸广阔  阅读(112)  评论(0编辑  收藏  举报