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.
我正在尝试为我的网站创建一个固定的页脚,但由于某种原因,溢出不起作用,内容也不能滚动。这是我的代码:
<div id='footbar' style="bottom: 0;left: 0;width: 100%;min-width: 800px;position: fixed;background-color: red;border-top: 1px solid black"> Context </div>
这对于纯 css 是不可能的 ..
当您使用固定定位时,您将元素固定到浏览器视口。
您将需要 javascript 或 jQuery ..