Sticky Footer CSS Problems

╄→гoц情女王★ 提交于 2019-12-02 09:47:25
ChssPly76

Take a look at Sticky Footer 2009. This has been discussed multiple times on SO as well.

I would add a CSS class to the DIV containing the columns and style that. To get close, I had to add the following to your CSS file:

body
{
 height: 100%;
}

.footer
{
 position: absolute;
 top: 90%;
 left: 0;
 height: 10%;
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!