将页脚固定在页面底部
在尝试将页脚固定在网页底部时,您尝试了各种方法方法,例如“bottom:0px”和“position:absolute”,没有令人满意的结果。这里有一个解决方案,可以确保无论屏幕大小如何,页脚都保持在页面底部:
#footer { position: fixed; bottom: 0; left: 0; right: 0; height: [desired height of footer, e.g., 50px]; margin-bottom: 0; }
为了防止页脚与页面内容重叠,请为正文添加边距:
body { margin-bottom: [same height as footer, e.g., 50px]; }
这可以确保页面保持可滚动,即使与固定页脚。调整 CSS 代码中的高度值以满足您的要求。
示例代码:
<div>
#footer { background-color: red; position: fixed; bottom: 0px; left: 0px; right: 0px; height: 50px; margin-bottom: 0px; } body { margin-bottom: 50px; }
此代码将页脚固定到底部页面,确保即使内容有限也可见。
以上是无论内容高度如何,如何将页脚固定在页面底部?的详细内容。更多信息请关注PHP中文网其他相关文章!