我基本上有三個div。水平自動填充中間重複div
<div id="headerLeft"></div>
<div id="headerMiddle"></div>
<div id="headerRight"></div>
用下面的CSS
#headerLeft
{
background-image: url("topLeft.png");
height: 88px;
width: 329px;
float:left;
}
#headerMiddle
{
background-image: url("topMiddleRepeat.png");
background-repeat:repeat-x;
position:relative;
height: 73px;
float:left;
color: white;
min-width:100px;
padding-top: 15px;
}
#headerRight
{
background-image: url("topRight.png");
float: left;
height: 87px;
width: 47px;
float:right;
}
我需要的中間股利水平重複填補了頭的空間的其餘部分。我無法手動設置div的寬度,因爲此html將被插入到其他未知寬度的頁面中。
我試着將寬度設置爲100%,但是這只是填滿整行,並將中間頁眉和右側頁眉推到中間頁眉上方。
這是我目前正在操作的頁面。 http://dl.dropbox.com/u/1501628/web/ipiphony.html
任何幫助將不勝感激。
您的語法對於#headerMiddle不正確。它應該是後臺重複的:repeat-x;而不是'x-repeat'。 – Dan
@丹恩謝謝。我更新了語法,但我原來的問題仍然存在:( – DaR
您是否嘗試了下面的一些解決方案? – Dan