I am trying to insert a background image but for some reason when I put this...
html{
background-image: url('images/background.png');
background-repeat:no-repeat;
background-size:100% 100%;
}
It doesn't seem to work, it stays blank. I know I have the path correct and the name correct I have only gone over it a million times, but when I put this...
html{
background-image: url('http://i.imgur.com/GRqXyR1.png');
background-repeat:no-repeat;
background-size:100% 100%;
}
The background comes up fine. I am confused I don't understand why the first method isn't working?