[HTML] [CSS] No background image/color
Dear all, The background-color AND the background-image does not work :( I've tried different web browser, i've tried an URL image found online, i've tried my own images, i have tried to apply a color to the background, i've tried to put the path for the images...... but the background still appears white.... There is below my HTLM code with images only, and the CSS code below as well.... If someone could help please :( <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="coding_test.css" /> <title>JAJA</title> </head> <body> <header> <div id="conteneur1"> <div class="element"><img src="jarvis_images/file_selection2.png" alt=""/></div> <div class="element"><img src="jarvis_images/hive2.png" alt=""/></div> </div> </header> <article> <div id="conteneur2"> <div class="element"><img src="jarvis_images/file_selection_aside2.png" alt=""/></div> <div class="element"><img src="jarvis_images/coreREZISED.png" alt=""/></div> <div class="element"><img src="jarvis_images/hack_system2.png" alt=""/></div> </div> </article> <footer> <p><center><img src="jarvis_images/number_above2.png" alt=""/></center></p> </footer> </body> </html> ------------------------ # css body { background-image: url('fnd.png'); background-position: none; background-size: none; background-attachment: fixed; font-family: Georgia; font-size: 12px; } #conteneur1 { display: flex; justify-content: space-around; } #conteneur2 { display: flex; justify-content: space-around; }