jeremy-h of Web Development
12/5/2017 - 5:29 PM

IE CSS Parallax Fix

In IE the CSS parallax appears jittery and doesn't scroll through smoothly. This CSS fixes it.

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