先将html和body元素的height都设置为100%,然后将其overflow设置为hidden即可

html,body{
height:100%;
overflow:hidden;
}