+ 4
Why doesn't the background-image work?
7 Respostas
+ 3
right after
body{
background-image: src(...);
}
you have
body{
background: white;
}
Essentially you are overwriting the background image rule.
CSS rules are read top to bottom so if you contradict a previous rule, the one that is further down will be applied.
https://code.sololearn.com/We4hEfIize8Y/?ref=app
+ 5
thank you 064xp ,and Andre Daniel!!
+ 4
Andre Daniel , i did it
+ 1
Can you relink the code in the description instead of the question title? I can't click it there.
+ 1
no problem:)
0
!!