我很难做到这一点。这是我的代码:
当内容很少时,我正在尝试集成一个停靠的页脚。我正在使用此站点作为如何执行此操作的代码示例:
http://ryanfait.com/sticky-footer/
http://ryanfait.com/sticky-footer/layout.css
但是,无论我将这段代码放入我的站点中的含义是什么,它都不起作用。有人可以告诉我如何将其与现有代码集成吗?
我很难做到这一点。这是我的代码:
当内容很少时,我正在尝试集成一个停靠的页脚。我正在使用此站点作为如何执行此操作的代码示例:
http://ryanfait.com/sticky-footer/
http://ryanfait.com/sticky-footer/layout.css
但是,无论我将这段代码放入我的站点中的含义是什么,它都不起作用。有人可以告诉我如何将其与现有代码集成吗?
您必须检查您的 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%
。