如果你想在頁腳的白色BG繼續到頁面底部,將背景圖像設置爲沿x和y軸重複:
#footer {
background: url(images/footer.gif) repeat-x 50% 0%;
min-height: 171px;
height: auto !important;
height: 171px;
overflow: hidden;
}
#footer .indent {
padding: 23px 0 20px 13px;
}
#footer p {
line-height: 22px;
font-size: 14px;
color: #3f3f3f;
}
#footer p a {
text-decoration: none;
color: #333333;
}
#footer p a:hover {
text-decoration: underline;
}
#footer p span a {
color: #000000;
}
/* Footer navigation */
nav.footer {
float:right;
}
nav.footer ul {
margin: 0;
list-style: none;
overflow: hidden;
}
nav.footer ul li {
float: left;
padding: 0 0 0 15px;
line-height: 22px;
font-size: 14px;
color: #3f3f3f;
}
nav.footer ul li a {
text-decoration: none;
color: #3f3f3f;
}
nav.footer ul li a:hover {
text-decoration: underline;
}
這將讓頁腳的白色BG片,填補了整個區域。
無關,你可以將你的images/bg.png減小到約10px的寬度,節省一些服務器帶寬而不會損失任何質量。
來源
2011-09-26 14:47:58
Pat
感謝您的提示!它的工作,不能相信我錯過了! – 3Cdesign