雖然我已清除它,但我的頁腳div與Chrome瀏覽器中的內容重疊。有人能指出我與CSS正確的方向。我應該使用一個if是否是鉻的JavaScript的東西?鉻頁腳重疊內容eventhough明確:都使用
http://archibaldbutler.com/projects/roaming-giraffe/html/
感謝
雖然我已清除它,但我的頁腳div與Chrome瀏覽器中的內容重疊。有人能指出我與CSS正確的方向。我應該使用一個if是否是鉻的JavaScript的東西?鉻頁腳重疊內容eventhough明確:都使用
http://archibaldbutler.com/projects/roaming-giraffe/html/
感謝
如果頁腳的設計是在頁面的底部,所有的時間,那麼這樣做:
.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;
}
謝謝你的伴侶,你是一個明星我非常感謝那些僅僅因爲好奇而需要我回答的人,這是我的老闆,親切的問候,阿奇 –
這是一兩個? –
頁腳是否應該放在botto m的頁面或該內容區域的底部? –