The below code is all inline CSS.
DOESN'T WORK
#Image {
background-image: url('Images/home.png');
}
DOESN'T WORK
#Image {
background-image: url('http://localhost:63832/Images/home.png');
}
But when I copy and paste the url, i can access the image. I can also see this defined and active when I check the css in the browser.
WORKS
<img id="Image" src="Images/home.png" />