我可以按照说明在网页上设置粘滞页脚
http://css-tricks.com/snippets/css/sticky-footer/
它表明min-height:100%
没有设置高度
.page-wrap {
min-height: 100%;
/* equal to footer height */
margin-bottom: -142px;
}
但是,在其中一个页面中,我需要设置height:100% in
.page-wrap 来调整其子项的高度。设置 height:100% 后,我的粘性页脚不起作用并出现在页面中间。
有没有办法让粘性页脚在 .page-wrap 中设置为 100% 的高度工作?