My CSS file is located at:
Project/Web/Support/Styles/file.css
The image I want to use is found here:
Project/Web/images/image.png
I am attempting to include this image in my CSS file.
I have tried the following methods:
1) background-image: url(/images/image.png);
2) background-image: url('/images/image.png');
3) background-image: url("/images/image.png");
4) background-image: url(../images/image.png);
5) background-image: url('../images/image.png');
6) background-image: url("../images/image.png");
However, I am not seeing the image displayed on my page.
What is the correct way to specify the path of an image file within a CSS file?