url background image not working code example
Example 1: background isn't working if in separate css file
background-image: url(../picture-folder/your-picture.png) 0 0;
//No quotes, two dots before "/"
//Also make sure that your <img> in html has some transparent image as src
Example 2: background-image url not working
background-image: url(nickcage.jpg); // No quotes around the file name so just write it down without "nickcage".jpg
Example 3: css background image not working
.container {
background-image: url("img/rose.jpg");
height: 800px;
}