Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将页脚保留在浏览器窗口的底部,这不像粘页脚那样位于页面底部。
我希望它始终在屏幕上,但在浏览器窗口的底部,即使它们向上或向下滚动也是如此。
position: fixed;就是你要找的。
position: fixed;
例如,您可以定位您的页脚bottom: 0; left: 0;。
bottom: 0; left: 0;
如果你是少数仍然关心 IE6 的不幸者之一,它不支持这一点,但是有hacks。