在页面底部创建固定页脚
在 HTML 中,页脚通常由名为“footer”的 div 类表示。要将此元素固定在页面底部,需要实现某些 CSS 属性。
提供的 CSS 代码将页脚相对顶部值 490px 定位,不适合将页脚固定到页面底部。底部。此外,代码没有指定宽度属性,这导致页脚无法填充页面宽度。
要创建固定页脚,可以使用 CSS 属性的组合。一种常见的方法是利用“粘性页脚”技术。实现方式如下:
/* Sticky Footer by Ryan Fait */ * { 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 */ }
<div class='wrapper'> body goes here <div class='push'></div> </div> <div class='footer'>Footer!</div>
通过使用此技术,页脚元素将保持固定在页面底部,即使页面内容调整高度也是如此。
以上是如何在 HTML 页面底部创建固定页脚?的详细内容。更多信息请关注PHP中文网其他相关文章!