In the background-image , the second url does not work - url("Images/color.jpg") .
The file path is correct. What could be the reason?
*{ padding: 0; margin: 0; } .header{ width: 100%; height: 80px; border: 1px solid black; background-image: url("images/Logo-Blog_76.png"), url("Images/color.jpg"); background-repeat: no-repeat, repeat; background-position: center; background-size: 1600px 160px; } <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="css/my.css"> <title>mysite</title> </head> <body> <div class="header"> </div> </body> </html>