css background-image property not working code example
Example 1: 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 2: css background image not working
.container {
background-image: url("img/rose.jpg");
height: 800px;
}
Example 3: css background image not showing
body { background: url('image_path_name') repeat 0 0; }
Make sure image_path_name is correctly written, if not then kindly check file extension once.
Thanks!!
Example 4: background image in css is not working
background-image: url(nickcage.jpg); // first problem may be missing quotation mark
// Second may be wrong path
// check the name of the file if there is any error
// check whether you are using proper extension of the file