1. 程式人生 > >頁面布局之三欄布局

頁面布局之三欄布局

三欄布局 bubuko AC center mage http contain width yellow

1.浮動布局

<div class="container">
    <div class="left">left</div>
    <div class="right">right</div>
    <div class="center">center</div>
</div>

<style>
    div{
        min-height:200px;
    }
    .left{
        width: 300px;
        float: left;
        background
-color: red; } .center{ background-color: yellow; } .right{ width: 300px; float: right; background-color: blue; } </style>

效果:

技術分享圖片

頁面布局之三欄布局