I'm experiencing a strange issue when trying to load a sprite image and encountering an error message:
"Failed to load resource: the server responded with a status of 404 (Not Found)"
In my CSS, I have it loaded like this:
background-image: url('/Img/icons.png');
The location seems correct because when I load it within an aspx page, it works fine:
<img src="Img/icons.png" />
The file is located at Img/icons.png for the aspx page and Css/style.css for the CSS.
This is all on local host, and I am struggling to identify the issue. Any assistance would be greatly appreciated. Thanks.