我有一個#container的元素,我有一個背景問題:CSS - 窗口高度
html {
font-family: Arial, sans-serif;
height:100%;
}
body{
margin: 0 auto;
padding: 0;
font-size: 12px;
height:100%;
background:url(/_images/body-bg.jpg) top center no-repeat;
/*background:#0068b3;
background: -webkit-gradient(linear, left top, left bottom, from(#bfd9ed), to(#0068b3));
background: -moz-linear-gradient(top, #bfd9ed, #0068b3);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bfd9ed', endColorstr='#0068b3')*/
}
#container {
width:995px;
margin: 0 auto;
padding: 0;
height:100%;
position:relative;
}
當我添加背景圖像的#container,並且頁面有需要滾動的內容,背景圖片只顯示窗口高度的數量,當你滾動背景圖片時不顯示...
爲什麼會這樣?
嘗試刪除'height:100%; ' – 2011-04-28 17:21:27
嘗試刪除'no-repeat' – 2011-04-28 17:22:14