nav,main,footer,共有3个标签。我把它们应用到flexbox:

body {
  color: #ddd;
  font-family: Gotham;
  background: url(../assets/body-background.png);
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
main {
  flex: 1;
}

一切看起来都很好。但之后情况越来越糟
我的脚本文件中有以下代码(使用jquery):
$('.scroll-top').click(function () {
  $('body').animate({
     scrollTop: 0
  }, 1000);
})

但是页面滚动动画不起作用
jsfiddle
$('a').click(function(){
	$('body').animate({
      scrollTop: 0
    }, 1000);
})

nav{
  padding: 10px;
  background: grey;
}
main{
  height:800px;
  background: lightgrey;
}
footer{
  padding: 10px;
  background: grey;
}
body{
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
main{
  flex: 1;
}
a{
  position: fixed;
  right: 40px;
  bottom: 40px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<nav>nav content</nav>
<main>main content</main>
<a href="javascript:;">scroll top</a>
<footer>footer content</footer>

最佳答案

它在chrome中运行良好,但在firefox中不起作用。要在firefox中使用滚动条,必须在html上使用滚动条:

$('body,html').animate({
  scrollTop: 0
}, 1000);

而且main不会接受您在firefox中分配给它的800px。对于相同的跨浏览器行为,将flex: 1更改为flex: 1 1 800px
请参见下面的演示:
$('a').click(function() {
  $('body,html').animate({
    scrollTop: 0
  }, 1000);
})

nav {
  padding: 10px;
  background: grey;
}

main {
  height: 800px;
  background: lightgrey;
}

footer {
  padding: 10px;
  background: grey;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 1 800px; /* NEW */
}

a {
  position: fixed;
  right: 40px;
  bottom: 40px;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<nav>nav content</nav>
<main>main content</main>
<a href="javascript:;">scroll top</a>
<footer>footer content</footer>

09-19 10:23