1. 程式人生 > 實用技巧 >css--聖盃佈局

css--聖盃佈局

所謂的聖盃佈局就是左右兩邊大小固定不變,中間寬度自適應。 DOM結構:
<div class="header">Header</div>
<div class="bd">
    <div class="main">Main</div>
    <div class="left">Left</div>
    <div class="right">Right
    </div>
</div>
<div class="footer">Footer</div>
樣式:
  <style>
        body{padding:0;margin:0}
        .header,.footer{width:100%;  background: #666;height:30px;clear:both;}
        .bd{
            padding-left:150px;
            padding-right:190px;
        }
        .left{
            background: #E79F6D;
            width:150px;
            float
:left; margin-left:-100%; position: relative; left:-150px; } .main{ background: #D6D6D6; width:100%; float:left; } .right{ background: #77BBDD; width:190px; float:left
; margin-left:-190px; position:relative; right:-190px; } </style>