2013-04-01 31 views

回答

0

如果頁腳的設計是在頁面的底部,所有的時間,那麼這樣做:

.footer-bg { 
    clear: both; 
    bottom: 0px; 
    position: fixed; 
    width: 996px; 
    height: 192px; 
    background-image: url('../html/images/footer-bg.jpg'); 
    background-position: center top; 
    background-repeat: no-repeat; 
} 

.content-bg2 { 
    clear: both; 
    float: left; 
    margin-top: 10px; 
    margin-bottom:192px; 
    width: 996px; 
    height: 369px; 
    background-image: url('../html/images/maincontent2bg.jpg'); 
    background-position: center top; 
    background-repeat: none; 
} 

如果它應該只是在該內容區域的底部然後執行此操作:

.footer-bg { 
    clear: both; 
    bottom: 0px; 
    width: 996px; 
    height: 192px; 
    background-image: url('../html/images/footer-bg.jpg'); 
    background-position: center top; 
    background-repeat: no-repeat; 
} 
+0

謝謝你的伴侶,你是一個明星我非常感謝那些僅僅因爲好奇而需要我回答的人,這是我的老闆,親切的問候,阿奇 –

+0

這是一兩個? –