我有一个"坚持到底#34;页脚,这意味着即使页面内容非常小,页脚也会位于屏幕的底部。如果内容较大,则页脚将位于页脚的末尾。
简单地完成:
html {
position: relative;
height: 100%;
}
body {
height: 100%;
font-size: 14px;
padding-top: 42px;
}
toggling:
$('html,body').animate({scrollTop: anchor.offset().top}, speed);
现在我的页面切换已经毁了,因为我无法做到这一点,因为身体一直是100%,无论如何要绕过它?