我很难过。这是我的代码:
我想在内容很少的情况下整合停靠的页脚。我正在使用此站点作为如何执行此操作的代码示例:
http://ryanfait.com/sticky-footer/
http://ryanfait.com/sticky-footer/layout.css
但是,无论我将此代码放入我的网站的内容是什么,它都无效。有人可以告诉我如何将其与现有代码集成吗?
答案 0 :(得分:0)
你必须查看你的html结构,例如在贴纸页脚的html中查找。
必须如下:
HTML:
<body>
<div class="wrapper">
<!-- your content -->
<div class="push"></div>
</div>
<div class="footer"></div>
</body>
正如css文件所说,我将在这里重新创建它:
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}
/*
Sticky Footer by Ryan Fait
http://ryanfait.com/
*/
有点编辑你的小提琴: http://jsfiddle.net/HMsKa/36/
您需要.wrapper
min-height: 100%
。