SOURCE

console 命令行工具 X clear

                    
>
console
<header>圣杯布局</header>
<div class="bd">
    <div class="main text">
        main
    </div>
    <div class="left text">
        left
    </div>
    <div class="right text">
        right
    </div>
</div>
<footer>footer</footer>
header,footer {
    text-align: center;
    width: 100%;
    background-color: #bbbbbb;
}
.text {
    text-align: center;
    line-height: 200px;
    font-size: 40px;
    color: #fff;
}

.bd {
    overflow: hidden;
    height:200px;
    padding: 0 200px 0 100px;
}

.main {
    float: left;
    width: 100%;
    background-color: #ddd;
}

.left {
    float: left;
    width: 100px;
    background-color: #da4242;
    /* 产生布局效果的属性 */
    margin-left: -100%;
    position: relative;
    left: -100px;
}

.right {
    float: left;
    width: 200px;
    background-color: #4ddef1;
    /* 产生布局效果的属性 */
    margin-left: -200px;
    position: relative;
    left: 200px;

}