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 和部分下制作了页脚。我使用了一个新的部分,<footer>.
<footer>
但是页脚不在内容之下。为什么?它粘在顶部。
http://generationx-pk.net/tools/index.html
我如何让它粘在底部,但并非总是如此,你知道当你进入网站时,直到你向下滚动才会看到页脚。
您不应该将带有内容 div 的容器放在标题 div 中。
那应该对你有帮助。
只需编辑您css的删除高度属性,
css
.header { height: 55px; }
改成height: auto;
height: auto;