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.
我正在开发一个基本的 html 网页,但我仍在学习它,这就是这个愚蠢问题的原因。
所以基本上我有这个图像,它是一个栏,我希望它位于页面底部并保持在该位置,即使您在页面上滚动也是如此。所以基本上它总是可见的。我猜你可以称它为页脚,但它应该总是可见的。
希望你明白我的意思。
我该怎么做呢?:)
在您的 CSS 中设置如下内容:
#footer { position: fixed; bottom: 0px; /* eventually */ left: 0px; width: 100%; height: 20px; z-index: 101; }
这应该可以解决问题 - 将其应用于 DIV 元素并将图像放入其中或将其设置为背景。