0
A
回答
2
我會推薦使用Ryan Fait's sticky footer。它可以完成你想用純CSS做的事情。
HTML:
<div class="wrapper">
Content Here
<div class="push"></div>
</div>
<div class="footer"></div>
CSS:
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}
.footer { /* centers the text */
text-align: center; /* horizontal centering */
line-height: 142px; /* vertical centering; should be equal to the footer height */
}
1
嘗試改變頁腳元素,像這樣的前述hr元素:
<footer style="position:fixed; left:0px; right:0px; bottom:0px;
background:rgb(255,255,255); text-align:center;">
<hr>
<p>© Company 2012</p>
</footer>
我認爲這或多或少解決您的問題。它不像http://ryanfait.com/sticky-footer/的頁腳那樣工作,但據我瞭解你的問題,這是你想要的。
PS:CSS當然應該放在CSS文件中。
相關問題
- 1. 頁腳底部的頁腳
- 2. 讓頁腳停留在頁面底部(不固定在底部)
- 3. 不會將頁腳固定在底部
- 4. 中心頁腳固定在底部IE
- 5. CSS位置固定底部頁腳
- 6. 固定頁腳不在底部
- 7. 如何將頁腳固定在底部?
- 8. 預先頁腳固定在底部,坐在頁腳
- 9. 使用固定標題頁坐在頁面底部的頁腳
- 10. 頁腳底部
- 11. 頁腳底部
- 12. 定位頁腳底部網頁頁面
- 13. 頁腳保持在頁面的底部,但不固定
- 14. 頁腳始終固定在頁面引導的底部?
- 15. 在Wordpress中將頁腳固定到頁面的底部
- 16. 使用固定頁腳獲取列到頁面底部
- 17. 在頁面底部或文本下方固定頁腳
- 18. 如何在頁面底部有2個固定頁腳
- 19. 頁腳對底部
- 20. 如何使頁腳底部對齊而不使用固定頁腳?
- 21. gridview固定頁眉和固定頁腳
- 22. 固定頁眉和頁腳
- 23. 如何創建固定在屏幕底部的頁腳,但用戶向下滾動時不再固定頁腳?
- 24. 頁腳底部的空格
- 25. Android Studio:固定頁腳被鎖定在底部
- 26. TouchListview固定頁腳
- 27. 固定頁腳,不會越過內容的底部
- 28. 內容100%的頁腳固定在底部
- 29. 頁腳總是在底部,但沒有固定的高度
- 30. 將頁腳固定到瀏覽器的底部
檢查此頁面右側的「相關」鏈接。 – showdev 2013-02-08 22:35:11
您嘗試過哪些教程,遇到了哪些問題? – zakangelle 2013-02-08 22:37:25
所有的教程都告訴你將html和body設置爲100%。這樣做會把所有的內容都向上放到整個頁面上。 – Feriscool 2013-02-08 22:38:21