background images css 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 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!!