After setting an image with a resolution of 1980 x 1200 as the background for my web page, I encountered an issue. When scrolling down, around the height of 1200px, the image disappears and is replaced by a white background. This problem only occurs in Chrome; Safari displays it perfectly fine. Below is the CSS code I used:
body,html{
margin-top: 0px;
background-image: url(../_images/1902974.jpg);
background-attachment: fixed;
background-position: center top;
width:100%;
height:100%;
}
I also attempted using background-position:fixed but the issue persisted in Chrome. Is there any additional code needed to fix this problem?