I am creating a website with Twitter Bootstrap and there is a white space at the bottom of the page i.e. I cannot get the background image to cover the entire page without there being whitespace at the bottom.
div.background {
background: url(http://i1068.photobucket.com/albums/u441/mr_ed_williams/leo1_zpsfbc5d2a3.jpg) no-repeat center top;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 874px;
}
If you enlarge the run window in this JS Fiddle( http://jsfiddle.net/Ff4Nr/1/ ) and scroll the window you can see what I mean.
All suggestions welcome?