這裏是我試圖實現的佈局。無法獲得兩張延伸頁面整個頁面的背景圖片?
我有被設置爲HTML的背景,使超出設計的灰紙tecture重複的背景的重複樣本。
然後我有竹身上的那個圖案,放在身體的背景上。
我似乎不能把竹子切斷到內容結束的地方。
這樣做的最佳方法是什麼?
在中心的白內容的div需要向下延伸到頁面的至少底部,我不能爲我的生活想出解決辦法好像它必須做
最簡單的事情這是它看起來像現在 - http://i.imgur.com/55dPe.png
這裏是代碼
<html>
<body>
<div id="wrapper">
<div id="header"></div>
<div id="content"></div>
</div>
</body>
</html>
和CSS
html{
background:url(images/background_swatch.png) top center;
}
body{
margin:0 auto;
background:url(images/background.png) top center no-repeat;
}
div#wrapper{
margin:0 auto;
width:800px;
background-color:#FFF;
border-left:5px solid black;
border-right:5px solid black;
}
#header{
margin:0 auto;
position:relative;
top:25px;
background:url(images/navigation_banner.png) no-repeat;
width:850px;
height:150px;
left: -25px;
}
這是photshop文件 - 生病更新後 – Gazow 2012-04-07 04:58:56