I want to create a site with a background image that always fills the entire window, even if the content can scroll vertically.
I have created this JSFiddle using ba
Use background-attachment: fixed;
Demo
html {
height: 100%;
margin:0px;
background: url(http://www.freegreatpicture.com/files/147/18380-hd-color-background-wallpaper.jpg) no-repeat center center;
background-size: cover;
background-attachment: fixed;
}
Also, I didn't got why you are using position: absolute;
on the wrapper element, generally you should be using position: relative;