2011-11-10 61 views

回答

0

我想出了它.. 我只是設置了我的主要橫幅寬度爲1100像素寬度:100%,並將背景圖像設置爲中心。 然後我使標題寬度與內容寬度相同。

3

我想你可能需要使用這一招:

<div id="wrapper"> 
    <div id="content"> 
    </div> 
</div> 

CSS ---

.wrapper { 
    float: left; 
    position: relative; 
    left: 50%; 
} 

.content { 
    float: left; 
    position: relative; 
    right: 50%; 
} 

*確保您的內容不AVE汽車的利潤率。如果你有餘量,請使用實際值。自動不再需要居中。

+0

與'#wrapper {text-align:center; }'在包裝器上並重置內容'#content {text-align:left;}; ''? – Smamatti

+0

好吧,我只是認爲無浮點設計會讓您更好地控制佈局。 – Smamatti

+0

不錯。我通常使用定位,但在這種情況下漂浮更好,因爲它可以保持流動。不要忘了'margin-left:-484px'左右。 –