我只是有这样的布局……
<body><div ID="header"></div><div ID="left"></div><div ID="right"></div><div ></div><div ID="footer"></div>
我想要做的是确保页脚总是停留在屏幕的底部,无论我的内容是否相当远,甚至没有足够的内容一直到屏幕的底部.
到目前为止,我可以通过上面列出的两种方式工作,但我希望两者都有效.
这是我为此设置的CSS.
@R_419_6832@ {height: 100%;}body {height: 100%;position: relative;}#footer {position: absolute;bottom: 0;}
我知道如果我应用最小高度:100%;到CSS文档中的@R_419_6832@元素将随着内容的推移而去,但如果我没有任何内容,它本身就不会粘在屏幕的底部.决议无论如何
我多次遇到这个问题,从来不确定如何解决这个问题.所以,一些帮助将得到很多赞赏,以及一些解释.
非常感谢大家的帮助!
解决方法 使用这个配合,这是一个非常好解释和易于遵循的教程:http://code.google.com/p/cleanstickyfooter/
最好的粘性页脚真的非常好用
从网站引用(我完全同意):
总结The Difference
Google “sticky footer”,I have Listed below why this technique works
better than the top results from this search.07001 – This technique is similar,but
cleanStickyFooter takes it much further. The technique located here
doesn’t play nicely when you want to make your footer have a wIDth of
100%.07002 – This technique is one out of many I am referring to when I say its invasive with CSS clearing Hacks.
以上是内存溢出为你收集整理的HTML – 强制页脚停留在底部?全部内容,希望文章能够帮你解决HTML – 强制页脚停留在底部?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)