When I do the following code, it works up until the point where i resize the page, the background image stars to repeat, even thought background-repeat is set to none. Any reason for this, you can view the page live here
#mainPage{
background-image: url(../images/home.JPG);
width: 100%;
height: 500px;
background-size: 100%;
background-repeat: none;
}
It’s
no-repeat, notnone:Whether or not you set
background-sizeshouldn’t make a difference.