CSS 使页脚粘贴到页面的底部

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 使页脚粘贴到页面的底部相关的知识,希望对你有一定的参考价值。

Add the following lines of CSS to your stylesheet. The negative value for the margin in .wrapper is the same number as the height of .footer and .push. The negative margin should always equal to the full height of the footer (including any padding or borders you may add).

   1. * {
   2. margin: 0;
   3. }
   4. html, body {
   5. height: 100%;
   6. }
   7. .wrapper {
   8. min-height: 100%;
   9. height: auto !important;
  10. height: 100%;
  11. margin: 0 auto -4em;
  12. }
  13. .footer, .push {
  14. height: 4em;
  15. }

Follow this HTML structure. No content can be outside of the .wrapper and .footer div tags unless it is absolutely positioned with CSS.

   1. <html>
   2.     <head>
   3.         <link rel="stylesheet" href="layout.css" ... />
   4.     </head>
   5.     <body>
   6.         <div class="wrapper">
   7.             <p>Your website content here.</p>
   8.             <div class="push"></div>
   9.         </div>
  10.         <div class="footer">
  11.             <p>Copyright (c) 2008</p>
  12.         </div>
  13.     </body>
  14. </html>

以上是关于CSS 使页脚粘贴到页面的底部的主要内容,如果未能解决你的问题,请参考以下文章

如何使页脚固定在页面底部

无法使页脚转到页面底部

如何使页脚粘在页面底部并在 Bootstrap 中居中?

页面内容不足时如何使页脚移至底部

当您有不同高度的页面时,如何使页脚位于所有屏幕尺寸的底部?

css 将Divi页脚粘贴到页面底部