improved answer @Ben Bos and commented by @Tim
This css will help prevent scrolling and performance issue with css re-render because position changed / little lagging without width and height
body,
html {
position: fixed;
width: 100%;
height: 100%
}